Fix page switching for tags/feeds
authorChip Black <bytex64@bytex64.net>
Thu, 3 Mar 2011 10:32:29 +0000 (02:32 -0800)
committerChip Black <bytex64@bytex64.net>
Thu, 3 Mar 2011 10:32:29 +0000 (02:32 -0800)
www/js/blerg.js

index ddc604a..28f0849 100644 (file)
@@ -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;