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