scroll-to-first-new-post.js 304 B

1234567891011
  1. (function (threadId) {
  2. return function () {
  3. var firstNew = _.getFirstNewPost(threadId);
  4. $.emit('expand', threadId)();
  5. requestAnimationFrame(function () {
  6. var post = document.getElementById("post_" + firstNew);
  7. window.scrollBy(0, post.getBoundingClientRect().top);
  8. })
  9. }
  10. })