summaryrefslogtreecommitdiffstats
path: root/templates/part.feed.starred.php
blob: 15f5e0a073a5ddab5a80e4346da453e48bbeebc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<li ng-class="{	
		active: starredBusinessLayer.isActive(0), 
		unread: starredBusinessLayer.getUnreadCount() > 0
	}" 
	ng-show="starredBusinessLayer.isVisible(0)"
	class="starred">
	<a class="starred-icon"
		href="#"
		ng-click="starredBusinessLayer.load(0)"
		oc-click-focus="{selector: '#app-content'}">
	   <?php p($l->t('Starred')) ?>
	</a>
	<span class="utils">
		<span class="unread-counter">
			{{ unreadCountFormatter(starredBusinessLayer.getUnreadCount()) }}
		</span>
	</span>
</li>