diff options
author | Adam Mathes <adam@trenchant.org> | 2017-01-29 19:54:50 -0800 |
---|---|---|
committer | Adam Mathes <adam@trenchant.org> | 2017-01-29 19:54:50 -0800 |
commit | 81e3737fb46350b13e97866a376011059506949f (patch) | |
tree | b91f67c72828b08e7883906983ae6ab0e92fc9aa | |
parent | 149ce428439207a84cc68c38037583cae799c412 (diff) | |
download | neko-81e3737fb46350b13e97866a376011059506949f.tar.gz neko-81e3737fb46350b13e97866a376011059506949f.tar.bz2 neko-81e3737fb46350b13e97866a376011059506949f.zip |
fix zero item bug
-rw-r--r-- | static/ui.js | 2 |
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; |