commit:4182838777472d5416bda381f784881e7948ecce
author:Chip Black
committer:Chip Black
date:Thu Mar 3 02:32:29 2011 -0800
parents:778d18a1d105cf441c18e43a351c056e5d029b44
Fix page switching for tags/feeds
diff --git a/www/js/blerg.js b/www/js/blerg.js
line changes: +6/-0
index ddc604a..28f0849
--- a/www/js/blerg.js
+++ b/www/js/blerg.js
@@ -209,6 +209,8 @@ Pager.prototype.showRecord = function(r) {
     }
 }
 
+Pager.prototype.loadItems = function(from, to, continuation) { }
+
 
 // Object to render user pages
 function User(username) {
@@ -718,6 +720,8 @@ function hashSwitch() {
         if (m[3]) {
             var r = parseInt(m[3]);
             currentPager.showPageAt(r);
+        } else {
+            currentPager.showPageAt(currentPager.itemCount - 1);
         }
     } else if (m = location.hash.match(/^#\/feed(?:\/p(\d+))?$/)) {
         if (loginStatus.loggedIn) {
@@ -727,6 +731,8 @@ function hashSwitch() {
             if (m[3]) {
                 var r = parseInt(m[3]);
                 currentPager.showPageAt(r);
+            } else {
+                currentPager.showPageAt(currentPager.itemCount - 1);
             }
         } else {
             location.href = baseURL;