Guest User

Untitled

a guest
Nov 20th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. it('should return true when below the fold', () => {
  2. const jQuery = global.jQuery = global.$ = require('jquery');
  3. let $img;
  4.  
  5. document.body.innerHTML = '<img />';
  6. $img = $('img');
  7. $img.css('margin-top', '769px');
  8.  
  9. console.log($img.offset().top);
  10. });
Add Comment
Please, Sign In to add comment