8 lines
231 B
JavaScript
8 lines
231 B
JavaScript
|
var widthissue = false;
|
||
|
window.addEventListener("resize", function(event) {
|
||
|
if(window.innerWidth > 800 && widthissue) {
|
||
|
widthissue = false
|
||
|
unset()
|
||
|
}
|
||
|
else if(window.innerWidth < 800) widthissue = true;
|
||
|
})
|