]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Corrected the Infinite Scroll CSS Selectors
authorCraig Andrews <candrews@integralblue.com>
Wed, 12 Aug 2009 03:05:46 +0000 (23:05 -0400)
committerCraig Andrews <candrews@integralblue.com>
Wed, 12 Aug 2009 03:05:46 +0000 (23:05 -0400)
Thanks dcostalis for making me aware of the issue!

plugins/InfiniteScroll/infinitescroll.js

index 4bd315b6fb015ae69bec8c8033d51bca6cb8ce83..6513072d0655e9e7fe3971402ab846bec8c73fa8 100644 (file)
@@ -1,12 +1,13 @@
 jQuery(document).ready(function($){
   $('notices_primary').infinitescroll({
+    debug: true,
     nextSelector    : "li.nav_next a",
     loadingImg      : $('address .url')[0].href+'plugins/InfiniteScroll/ajax-loader.gif',
     text            : "<em>Loading the next set of posts...</em>",
     donetext        : "<em>Congratulations, you\'ve reached the end of the Internet.</em>",
     navSelector     : "div.pagination",
-    contentSelector : "#notices_primary",
-    itemSelector    : "ol.notices"
+    contentSelector : "#notices_primary ol.notices",
+    itemSelector    : "#notices_primary ol.notices li"
     },function(){
         NoticeAttachments();
     });