summaryrefslogtreecommitdiffstats
path: root/js/app
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-11-18 18:51:51 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2014-11-18 18:51:51 +0100
commitfd9be3ed07a150618247a026a165266c1363404b (patch)
tree029d6aab274438abade7874c0ffbb35697fa4ae4 /js/app
parente255ebbad8b6af3be1d5b7de164c17cd076d77d6 (diff)
test
Diffstat (limited to 'js/app')
-rw-r--r--js/app/Run.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/js/app/Run.js b/js/app/Run.js
index dbea1641b..1e2519778 100644
--- a/js/app/Run.js
+++ b/js/app/Run.js
@@ -9,11 +9,12 @@
*/
app.run(function ($rootScope, $location, $http, $q, $interval, Loading,
ItemResource, FeedResource, FolderResource, SettingsResource,
- Publisher, BASE_URL, FEED_TYPE, REFRESH_RATE) {
+ Publisher, BASE_URL, FEED_TYPE, REFRESH_RATE, $animate) {
'use strict';
// show Loading screen
Loading.setLoading('global', true);
+ $animate.enable(false);
// listen to keys in returned queries to automatically distribute the
// incoming values to models
@@ -83,6 +84,7 @@ app.run(function ($rootScope, $location, $http, $q, $interval, Loading,
]
)
.then(function () {
+ $animate.enable(true);
Loading.setLoading('global', false);
});