From: Andrew Dolgov Date: Wed, 17 Nov 2010 08:34:55 +0000 (+0300) Subject: fix infinite scrolling not working X-Git-Tag: 1.5.0~178 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=8624dec2dbd50440fbcee76546a17837b55c772e;p=tt-rss.git fix infinite scrolling not working --- diff --git a/tt-rss.php b/tt-rss.php index 98e68af4..5dc2a724 100644 --- a/tt-rss.php +++ b/tt-rss.php @@ -204,7 +204,8 @@
-
+
diff --git a/viewfeed.js b/viewfeed.js index 22465013..99e8dffc 100644 --- a/viewfeed.js +++ b/viewfeed.js @@ -133,7 +133,7 @@ function headlines_callback2(transport, feed_cur_page) { var ids = getSelectedArticleIds2(); - c.innerHTML = c.innerHTML + headlines.firstChild.nodeValue; + c.innerHTML = c.innerHTML + headlines_content.firstChild.nodeValue; console.log("restore selected ids: " + ids); @@ -1513,16 +1513,9 @@ function postMouseOut(id) { } } -function headlines_scroll_handler() { +function headlines_scroll_handler(e) { try { - var e = $("headlinesInnerContainer"); - - var toolbar_form = document.forms["main_toolbar_form"]; - -// console.log((e.scrollTop + e.offsetHeight) + " vs " + e.scrollHeight + " dis? " + -// _infscroll_disable); - if (e.scrollTop + e.offsetHeight > e.scrollHeight - 100) { if (!_infscroll_disable) { viewNextFeedPage();