Guest User

Untitled

a guest
Jul 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1.  
  2. function toggle(){
  3. link.style.display = (isVisible) ? 'block' : 'none';
  4. }
  5.  
  6. function isVisible(){
  7. var width = window.innerWidth || document.body.offsetWidth;
  8. return width > 1270;
  9. }
Add Comment
Please, Sign In to add comment