Fix page switching for tags/feeds
}
}
+Pager.prototype.loadItems = function(from, to, continuation) { }
+
// Object to render user pages
function User(username) {
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) {
if (m[3]) {
var r = parseInt(m[3]);
currentPager.showPageAt(r);
+ } else {
+ currentPager.showPageAt(currentPager.itemCount - 1);
}
} else {
location.href = baseURL;