diff options
author | Adam Mathes <adam@trenchant.org> | 2017-01-24 21:32:38 -0800 |
---|---|---|
committer | Adam Mathes <adam@trenchant.org> | 2017-01-24 21:32:38 -0800 |
commit | 1129a61295ab7d3a605861da75e0d3e4cd86c8c2 (patch) | |
tree | 14c95452b3fc78c02a147aa0ce79a880b98c5d58 | |
parent | 164fb41c6a1f0620d420c062fc6a44892ae2f9d3 (diff) | |
download | neko-1129a61295ab7d3a605861da75e0d3e4cd86c8c2.tar.gz neko-1129a61295ab7d3a605861da75e0d3e4cd86c8c2.tar.bz2 neko-1129a61295ab7d3a605861da75e0d3e4cd86c8c2.zip |
bugfix js no items left
-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 35f34e5..b0f7aa2 100644 --- a/static/ui.js +++ b/static/ui.js @@ -275,7 +275,7 @@ var ItemCollection = Backbone.Collection.extend({ }); console.log("items ", items) if(items.length == 0) { - App.nomore = true; + App.noMore = true; } App.loading = false; |