summaryrefslogtreecommitdiffstats
path: root/js/public
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-03-26 19:30:27 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-03-26 19:30:27 +0100
commitf7c819938067fb6a81822f26943a5c136643a1f7 (patch)
treeaa6663df5cce7a7bbb46aad728df033706d88991 /js/public
parenteff408710b708a44cf3869599985fd8246c0400b (diff)
viewing the first 20 items is now possible
Diffstat (limited to 'js/public')
-rw-r--r--js/public/app.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/js/public/app.js b/js/public/app.js
index eade23a4e..766317fd5 100644
--- a/js/public/app.js
+++ b/js/public/app.js
@@ -209,8 +209,6 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
this.$scope.folders = this._folderModel.getAll();
this.$scope.feedType = this._feedType;
this.$scope.isFeedActive = function(type, id) {
- console.log(type + ' ' + id);
- console.log(_this.isFeedActive(type, id));
return _this.isFeedActive(type, id);
};
this.$scope.isShown = function(type, id) {
@@ -482,6 +480,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
this.$scope = $scope;
this.itemModel = itemModel;
this.feedLoading = feedLoading;
+ this.$scope.items = this.itemModel.getAll();
this.$scope.isLoading = function() {
return _this.feedLoading.isLoading();
};