summaryrefslogtreecommitdiffstats
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
parent7862dcc3f38e4a976b0437f684912e773e11f01e (diff)
switch star and keep unread icon
-rw-r--r--CHANGELOG.md3
-rw-r--r--templates/part.content.php8
2 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5998bb95a..3278c2715 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+owncloud-news (3.202)
+* **Enhancement**: Switch keep unread and star icon
+
owncloud-news (3.201)
* **New dependency**: Minimum libxml version: 2.7.8
* **Bugfix**: Move open website icon in compact view to the left of the title
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>