Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. function searchNewRecords() {
  2. // Will not work in Firefox:
  3. // if (scrolledNearBottom(document.querySelector('body'), this.offset)) {
  4. // Will work in Firefox and Chrome:
  5. if (scrolledNearBottom(document.querySelector('body,html'), this.offset)) {
  6. addSearchedRecords.call(this);
  7. }
  8. }
  9.  
  10. function browseNewRecords() {
  11. // Will not work in Firefox:
  12. // if (scrolledNearBottom(document.querySelector('body'), this.offset)) {
  13. // Will work in Firefox and Chrome:
  14. if (scrolledNearBottom(document.querySelector('body,html'), this.offset)) {
  15. addBrowsedRecords.call(this);
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement