summaryrefslogtreecommitdiffstats
path: root/js/app/app.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'js/app/app.coffee')
-rw-r--r--js/app/app.coffee6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/app/app.coffee b/js/app/app.coffee
index 9a8e54d6a..2042a9ebf 100644
--- a/js/app/app.coffee
+++ b/js/app/app.coffee
@@ -30,13 +30,13 @@ angular.module('News', ['OC', 'ui']).config ($provide) ->
itemBatchSize: 20
-angular.module('News').run ['Persistence', 'Config', 'FeedBl',
-(Persistence, Config, FeedBl) ->
+angular.module('News').run ['Persistence', 'Config', 'FeedBusinessLayer',
+(Persistence, Config, FeedBusinessLayer) ->
Persistence.init()
setInterval ->
- FeedBl.updateFeeds()
+ FeedBusinessLayer.updateFeeds()
, Config.feedUpdateInterval
]