9 lines
210 B
JavaScript
9 lines
210 B
JavaScript
|
if(screen.width <= 1020){
|
||
|
$(".navCon").on("click", (e) => {
|
||
|
$(".navIpd").css("right", "0px");
|
||
|
e.preventDefault();
|
||
|
})
|
||
|
$(".main").on("click", function(params) {
|
||
|
$(".navIpd").css("right", "-250px");
|
||
|
})
|
||
|
}
|