]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Moved class="pagination" to child element and removed element
authorSarven Capadisli <csarven@status.net>
Fri, 13 Nov 2009 12:26:24 +0000 (12:26 +0000)
committerSarven Capadisli <csarven@status.net>
Fri, 13 Nov 2009 12:26:24 +0000 (12:26 +0000)
lib/action.php
plugins/Facebook/facebookaction.php
plugins/Facebook/facebookhome.php
plugins/InfiniteScroll/infinitescroll.js

index 80f398fbd77e25b8736af0a5c7cb33cae06cb5fd..b5cf3240c69a39efe131f27dfdad5e4fb6f1606e 100644 (file)
@@ -1048,8 +1048,7 @@ class Action extends HTMLOutputter // lawsuit
     {
         // Does a little before-after block for next/prev page
         if ($have_before || $have_after) {
-            $this->elementStart('div', array('class' => 'pagination'));
-            $this->elementStart('dl', null);
+            $this->elementStart('dl', 'pagination');
             $this->element('dt', null, _('Pagination'));
             $this->elementStart('dd', null);
             $this->elementStart('ul', array('class' => 'nav'));
@@ -1074,7 +1073,6 @@ class Action extends HTMLOutputter // lawsuit
             $this->elementEnd('ul');
             $this->elementEnd('dd');
             $this->elementEnd('dl');
-            $this->elementEnd('div');
         }
     }
 
index a10fdf90d4e55b5214be9a982d9eef80aa0dbdca..c852bbf5e6e0a1540d423fe032d0ac0a8cf774a1 100644 (file)
@@ -382,8 +382,7 @@ class FacebookAction extends Action
     {
         // Does a little before-after block for next/prev page
         if ($have_before || $have_after) {
-            $this->elementStart('div', array('class' => 'pagination'));
-            $this->elementStart('dl', null);
+            $this->elementStart('dl', 'pagination');
             $this->element('dt', null, _('Pagination'));
             $this->elementStart('dd', null);
             $this->elementStart('ul', array('class' => 'nav'));
@@ -408,7 +407,6 @@ class FacebookAction extends Action
             $this->elementEnd('ul');
             $this->elementEnd('dd');
             $this->elementEnd('dl');
-            $this->elementEnd('div');
         }
     }
 
index 91c0cc6b861ee4e8ac3da3419958215b7b7024c3..ea141c2c2db08801ff71cc1b436d379c6346f56b 100644 (file)
@@ -244,8 +244,7 @@ class FacebookhomeAction extends FacebookAction
         // XXX: Fix so this uses common_local_url() if possible.
 
         if ($have_before || $have_after) {
-            $this->elementStart('div', array('class' => 'pagination'));
-            $this->elementStart('dl', null);
+            $this->elementStart('dl', 'pagination');
             $this->element('dt', null, _('Pagination'));
             $this->elementStart('dd', null);
             $this->elementStart('ul', array('class' => 'nav'));
@@ -270,7 +269,6 @@ class FacebookhomeAction extends FacebookAction
             $this->elementEnd('ul');
             $this->elementEnd('dd');
             $this->elementEnd('dl');
-            $this->elementEnd('div');
         }
     }
 
index ae4d53d09593fc215e65f9f4353e1b71289dd7d5..09b2d4f72e40bdfc103905952894ad23e0f9b228 100644 (file)
@@ -6,7 +6,7 @@ jQuery(document).ready(function($){
     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",
+    navSelector     : ".pagination",
     contentSelector : "#notices_primary ol.notices",
     itemSelector    : "#notices_primary ol.notices li"
     },function(){