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