From: Chip Black Date: Thu, 3 Mar 2011 10:32:29 +0000 (-0800) Subject: Fix page switching for tags/feeds X-Git-Tag: v1.5~3 X-Git-Url: http://git.bytex64.net/?a=commitdiff_plain;h=4182838777472d5416bda381f784881e7948ecce;p=blerg.git Fix page switching for tags/feeds --- diff --git a/www/js/blerg.js b/www/js/blerg.js index ddc604a..28f0849 100644 --- 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;