seems to work better for long posts

This commit is contained in:
Baris Soner Usakli
2014-02-18 00:42:14 -05:00
parent 7aa38adb52
commit 229fe2f80f

View File

@@ -1138,11 +1138,7 @@ define(['composer', 'forum/pagination'], function(composer, pagination) {
var elTop = el.offset().top;
var height = Math.floor(el.height());
var elBottom = elTop + height;
return ((elBottom >= scrollTop) &&
(elTop <= scrollBottom) &&
(elBottom <= scrollBottom) &&
(elTop >= scrollTop));
return !(elTop > scrollBottom || elBottom < scrollTop);
}
Topic.scrollToPost = function(pid, duration, offset) {