summaryrefslogtreecommitdiffstats
path: root/js/controller
diff options
context:
space:
mode:
Diffstat (limited to 'js/controller')
-rw-r--r--js/controller/NavigationController.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/js/controller/NavigationController.js b/js/controller/NavigationController.js
index 2483fbd00..191618504 100644
--- a/js/controller/NavigationController.js
+++ b/js/controller/NavigationController.js
@@ -113,6 +113,10 @@ app.controller('NavigationController', function ($route, FEED_TYPE, FeedResource
return this.getStarredCount() > 0;
};
+ this.getSharedCount = function () {
+ return ItemResource.getSharedCount();
+ };
+
this.isSharedUnread = function () {
return true; // TODO:: waiting for Nicolas' request to receive the number of shared articles
//return this.getSharedCount() > 0;
@@ -156,7 +160,6 @@ app.controller('NavigationController', function ($route, FEED_TYPE, FeedResource
};
this.isSharedActive = function () {
- console.log('hey i\'m : ' + $route.current.$$route.type);
return $route.current &&
$route.current.$$route.type === FEED_TYPE.SHARED;
};