summaryrefslogtreecommitdiffstats
path: root/templates/part.feed.starred.php
blob: 24258b2728e1a7da50ab6f76fc590dd5a0a07d8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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)">
	   <?php p($l->t('Starred')) ?>
	</a>
	<span class="utils">
		<span class="unread-counter">
			{{ starredBusinessLayer.getUnreadCount() }}
		</span>
	</span>
</li>