summaryrefslogtreecommitdiffstats
path: root/templates/part.feed.unread.php
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-15 16:02:32 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-15 16:02:32 +0200
commit464ff6c4c1bda3edbd0f132c4d3d866539d3a117 (patch)
tree96b8fd57e24ebaab762a190a933cd98e1c7a4881 /templates/part.feed.unread.php
parent89c31ab5fcb2f931fecc5ce82608ff7c8129510a (diff)
renamed bl to businesslayer, handle exception in update routine, fix #69
Diffstat (limited to 'templates/part.feed.unread.php')
-rw-r--r--templates/part.feed.unread.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/templates/part.feed.unread.php b/templates/part.feed.unread.php
index 67c57e369..03ec2754d 100644
--- a/templates/part.feed.unread.php
+++ b/templates/part.feed.unread.php
@@ -1,26 +1,26 @@
<li ng-class="{
- active: subscriptionsBl.isActive(0),
- unread: subscriptionsBl.getUnreadCount(0) > 0
+ active: subscriptionsBusinessLayer.isActive(0),
+ unread: subscriptionsBusinessLayer.getUnreadCount(0) > 0
}"
- ng-show="subscriptionsBl.isVisible(0)">
+ ng-show="subscriptionsBusinessLayer.isVisible(0)">
<a class="rss-icon"
href="#"
- ui-if="!feedBl.isShowAll()"
- ng-click="subscriptionsBl.load(0)">
+ ui-if="!feedBusinessLayer.isShowAll()"
+ ng-click="subscriptionsBusinessLayer.load(0)">
<?php p($l->t('Unread articles'))?>
</a>
<a class="rss-icon"
href="#"
- ui-if="feedBl.isShowAll()"
- ng-click="subscriptionsBl.load(0)">
+ ui-if="feedBusinessLayer.isShowAll()"
+ ng-click="subscriptionsBusinessLayer.load(0)">
<?php p($l->t('All articles'))?>
</a>
<span class="utils">
<span class="unread-counter">
- {{ subscriptionsBl.getUnreadCount() }}
+ {{ subscriptionsBusinessLayer.getUnreadCount() }}
</span>
<button class="svg action mark-read-icon"
- ng-click="subscriptionsBl.markAllRead()"
+ ng-click="subscriptionsBusinessLayer.markAllRead()"
title="<?php p($l->t('Mark all read')) ?>"></button>
</span>
</li> \ No newline at end of file