aboutsummaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
authorAdam Mathes <adam@trenchant.org>2017-01-29 19:54:50 -0800
committerAdam Mathes <adam@trenchant.org>2017-01-29 19:54:50 -0800
commit81e3737fb46350b13e97866a376011059506949f (patch)
treeb91f67c72828b08e7883906983ae6ab0e92fc9aa /static
parent149ce428439207a84cc68c38037583cae799c412 (diff)
downloadneko-81e3737fb46350b13e97866a376011059506949f.tar.gz
neko-81e3737fb46350b13e97866a376011059506949f.tar.bz2
neko-81e3737fb46350b13e97866a376011059506949f.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 d9b9543..b8bb06f 100644
--- a/static/ui.js
+++ b/static/ui.js
@@ -277,7 +277,7 @@ var ItemCollection = Backbone.Collection.extend({
if(items.length == 0) {
// console.log("no more items");
App.noMore = true;
- App.loading = true;
+ // App.loading = true;
}
else {
App.loading = false;