summaryrefslogtreecommitdiffstats
path: root/js/controller
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-11-18 18:56:12 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2014-11-18 18:56:12 +0100
commitadf395b7cfa91024af5436d0d8623d26d947a7b3 (patch)
tree8c699d30b55e019b1869649e8a8694768faed80a /js/controller
parent14b93b69eba76cda6e3d7e1709ce9ae29108225d (diff)
test
Diffstat (limited to 'js/controller')
-rw-r--r--js/controller/NavigationController.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/controller/NavigationController.js b/js/controller/NavigationController.js
index d0f9c526e..42396178a 100644
--- a/js/controller/NavigationController.js
+++ b/js/controller/NavigationController.js
@@ -9,7 +9,7 @@
*/
app.controller('NavigationController',
function ($route, FEED_TYPE, FeedResource, FolderResource, ItemResource,
- SettingsResource, Publisher, $rootScope, $location, $q) {
+ SettingsResource, Publisher, $rootScope, $location, $q, $animate) {
'use strict';
this.feedError = '';
@@ -73,6 +73,7 @@ function ($route, FEED_TYPE, FeedResource, FolderResource, ItemResource,
};
this.getFolderUnreadCount= function (folderId) {
+ $animate.enabled(true);
return FeedResource.getFolderUnreadCount(folderId);
};