fu: Close-up of Fu, bringing a scoop of water to her mouth (Default)
fu ([personal profile] fu) wrote in [site community profile] changelog2012-02-22 10:16 am

[dw-free] Only show the top set of pagination for /icons when we have > 6 of them visible on the pag

[commit: http://hg.dwscoalition.org/dw-free/rev/c1af4e57f149]

Only show the top set of pagination for /icons when we have > 6 of them
visible on the page.

Patch by [personal profile] fu.

Files modified:
  • bin/upgrading/s2layers/siteviews/layout.s2
--------------------------------------------------------------------------------
diff -r 6a2461e3d553 -r c1af4e57f149 bin/upgrading/s2layers/siteviews/layout.s2
--- a/bin/upgrading/s2layers/siteviews/layout.s2	Wed Feb 22 18:10:25 2012 +0800
+++ b/bin/upgrading/s2layers/siteviews/layout.s2	Wed Feb 22 18:17:04 2012 +0800
@@ -119,7 +119,9 @@
         }
         """</p>""";
 
-        $.pages->print({ "anchor" => "", "all_url" => "$.journal.userpic_listing_url?view=all" });
+        if ( $.pages.total > 6 ) {
+            $.pages->print({ "anchor" => "", "all_url" => "$.journal.userpic_listing_url?view=all" });
+        }
 
         """<p>""";
         var int sort_ct = 0;
--------------------------------------------------------------------------------