summaryrefslogtreecommitdiffstats
path: root/templates/part.feed.unread.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/part.feed.unread.php')
-rw-r--r--templates/part.feed.unread.php22
1 files changed, 10 insertions, 12 deletions
diff --git a/templates/part.feed.unread.php b/templates/part.feed.unread.php
index 2fe2eda0c..049332002 100644
--- a/templates/part.feed.unread.php
+++ b/templates/part.feed.unread.php
@@ -1,28 +1,26 @@
<li ng-class="{
active: subscriptionsBusinessLayer.isActive(0),
unread: getTotalUnreadCount() > 0
- }"
+ }"
ng-show="subscriptionsBusinessLayer.isVisible(0)">
- <a class="rss-icon"
- href="#"
- ui-if="!feedBusinessLayer.isShowAll()"
- ng-click="subscriptionsBusinessLayer.load(0)"
- oc-click-focus="{selector: '#app-content'}">
+
+ <a class="rss-icon" href="#/items" ng-if="!Navigation.isShowAll()">
<?php p($l->t('Unread articles'))?>
</a>
- <a class="rss-icon"
- href="#"
- ui-if="feedBusinessLayer.isShowAll()"
- ng-click="subscriptionsBusinessLayer.load(0)"
- oc-click-focus="{selector: '#app-content'}">
+
+ <a class="rss-icon" href="#/items" ng-if="Navigation.isShowAll()">
<?php p($l->t('All articles'))?>
</a>
+
+ <div class="utils">
+
+ </div>
<span class="utils">
<span class="unread-counter"
ng-show="getTotalUnreadCount() > 0">
{{ unreadCountFormatter(getTotalUnreadCount()) }}
</span>
- <button class="svg action mark-read-icon"
+ <button class="svg action mark-read-icon"
ng-click="subscriptionsBusinessLayer.markRead()"
title="<?php p($l->t('Mark read')) ?>"
ng-show="getTotalUnreadCount() > 0"