aboutsummaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
authorAdam Mathes <adam@trenchant.org>2017-01-29 19:58:38 -0800
committerAdam Mathes <adam@trenchant.org>2017-01-29 19:58:38 -0800
commit030cfcce60658ede58a31b36704a3a417c346a4c (patch)
treed6de989dde23b89189e446cb45fee0bdf6477841 /static
parenta805034f1d00b78a33dfa1f28ff259ed4c5a8f26 (diff)
downloadneko-030cfcce60658ede58a31b36704a3a417c346a4c.tar.gz
neko-030cfcce60658ede58a31b36704a3a417c346a4c.tar.bz2
neko-030cfcce60658ede58a31b36704a3a417c346a4c.zip
fix zero item bug
Diffstat (limited to 'static')
-rw-r--r--static/ui.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/static/ui.js b/static/ui.js
index 8dcff97..96e285d 100644
--- a/static/ui.js
+++ b/static/ui.js
@@ -24,7 +24,6 @@ var AppModel = Backbone.Model.extend({
// this.tags.boot();
this.feeds.fetch({set: true, remove: false})
window.setInterval(function() { App.update_read_status() }, 5000);
-
},
filterToFeed: function(feed) {
@@ -277,6 +276,7 @@ var ItemCollection = Backbone.Collection.extend({
reboot: function() {
App.noMore = false;
+ App.loading = false;
this.reset();
this.boot();
},