Guest User

Untitled

a guest
Jan 4th, 2017
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. d = $$(".messages-content")[0];
  2. d.__lastST = d.__lastSH = 0;
  3.  
  4. setInterval(function() {
  5.     if ((d.__lastSH != d.scrollHeight) && (d.__lastST<=d.scrollTop))
  6.     {
  7.         d.scrollTop = d.scrollHeight;
  8.         d.__lastSH = d.scrollHeight;
  9.         d.__lastST = d.scrollTop;
  10.     }
  11. }, 500);
Advertisement
Add Comment
Please, Sign In to add comment