summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-09-29 14:58:29 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-09-29 14:58:29 +0200
commit162a864ac2aedc3f4fb83ad585a8b6299ead2a92 (patch)
tree8b68947031df5a777d0e99cba901bb4ac2aa73af /templates
parent7862dcc3f38e4a976b0437f684912e773e11f01e (diff)
switch star and keep unread icon
Diffstat (limited to 'templates')
-rw-r--r--templates/part.content.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/part.content.php b/templates/part.content.php
index bdac758bb..4f21106d1 100644
--- a/templates/part.content.php
+++ b/templates/part.content.php
@@ -37,14 +37,14 @@
datetime="{{ item.pubDate*1000|date:'yyyy-MM-ddTHH:mm:ssZ' }}">{{ Content.getRelativeDate(item.pubDate) }}
</time>
</li>
- <li ng-click="Content.toggleKeepUnread(item.id)" class="util" news-stop-propagation>
- <button class="icon-toggle toggle-keep-unread" ng-hide="item.keepUnread" title="<?php p($l->t('Keep article unread')); ?>"></button>
- <button class="icon-toggle toggle-keep-unread keep-unread" ng-show="item.keepUnread" title="<?php p($l->t('Remove keep article unread')); ?>"></button>
- </li>
<li ng-click="Content.toggleStar(item.id)" class="util" news-stop-propagation>
<button class="star svg" ng-hide="item.starred" title="<?php p($l->t('Star article')); ?>"></button>
<button class="starred svg" ng-show="item.starred" title="<?php p($l->t('Unstar article')); ?>"></button>
</li>
+ <li ng-click="Content.toggleKeepUnread(item.id)" class="util" news-stop-propagation>
+ <button class="icon-toggle toggle-keep-unread" ng-hide="item.keepUnread" title="<?php p($l->t('Keep article unread')); ?>"></button>
+ <button class="icon-toggle toggle-keep-unread keep-unread" ng-show="item.keepUnread" title="<?php p($l->t('Remove keep article unread')); ?>"></button>
+ </li>
</ul>
</div>