summaryrefslogtreecommitdiffstats
path: root/js/public/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/public/app.js')
-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();
};