summaryrefslogtreecommitdiffstats
path: root/js/app/controllers/itemcontroller.coffee
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-03-23 16:18:43 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-03-23 16:18:43 +0100
commitecc4a533ccf0c56527b4aaaa94a22a0dddf29fa2 (patch)
tree72955c4a30595c4a8f20fbb1672c441a553df4f1 /js/app/controllers/itemcontroller.coffee
parentd65fa8090469286396342ff2299b58b79d83f8f3 (diff)
use all articles if active feed is null
Diffstat (limited to 'js/app/controllers/itemcontroller.coffee')
-rw-r--r--js/app/controllers/itemcontroller.coffee5
1 files changed, 4 insertions, 1 deletions
diff --git a/js/app/controllers/itemcontroller.coffee b/js/app/controllers/itemcontroller.coffee
index 3350c674e..163d652ca 100644
--- a/js/app/controllers/itemcontroller.coffee
+++ b/js/app/controllers/itemcontroller.coffee
@@ -25,7 +25,10 @@ angular.module('News').factory '_ItemController', ->
class ItemController
- constructor: (@$scope, @itemModel) ->
+ constructor: (@$scope, @itemModel, @feedLoading) ->
+
+ @$scope.isLoading = =>
+ return @feedLoading.isLoading()
return ItemController \ No newline at end of file