summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-04-30 18:25:49 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2015-04-30 18:25:49 +0200
commit2e54780c1496bfa39cd035b9ac40ed851d2198f1 (patch)
treeb9991f6306bbf266942d56525175868448a35402 /templates
parent5515371a8017b6df6b7824da7fa7b97c57344c32 (diff)
fix #635
Diffstat (limited to 'templates')
-rw-r--r--templates/part.content.shortcuts.php4
-rw-r--r--templates/part.navigation.feed.php2
-rw-r--r--templates/part.navigation.folder.php2
-rw-r--r--templates/part.navigation.unreadfeed.php2
4 files changed, 7 insertions, 3 deletions
diff --git a/templates/part.content.shortcuts.php b/templates/part.content.shortcuts.php
index 7a9fd4562..82a39efe3 100644
--- a/templates/part.content.shortcuts.php
+++ b/templates/part.content.shortcuts.php
@@ -69,6 +69,10 @@
<td>q</td>
<td><?php p($l->t('Focus search field')); ?></td>
</tr>
+ <tr>
+ <td>shift + a</td>
+ <td><?php p($l->t('Mark current article\'s feed/folder read')); ?></td>
+ </tr>
</table>
</div>
</div> \ No newline at end of file
diff --git a/templates/part.navigation.feed.php b/templates/part.navigation.feed.php
index 8a84ea48e..337722772 100644
--- a/templates/part.navigation.feed.php
+++ b/templates/part.navigation.feed.php
@@ -112,7 +112,7 @@
title="<?php p($l->t('Delete feed')); ?>">
</button>
</li>
- <li ng-show="Navigation.getFeedUnreadCount(feed.id) > 0">
+ <li ng-show="Navigation.getFeedUnreadCount(feed.id) > 0" class="mark-read">
<button class="icon-checkmark"
ng-click="Navigation.markFeedRead(feed.id)"
title="<?php p($l->t('Mark all articles read')); ?>">
diff --git a/templates/part.navigation.folder.php b/templates/part.navigation.folder.php
index e1add05de..1590c3545 100644
--- a/templates/part.navigation.folder.php
+++ b/templates/part.navigation.folder.php
@@ -120,7 +120,7 @@
title="<?php p($l->t('Delete folder')); ?>">
</button>
</li>
- <li ng-show="Navigation.getFolderUnreadCount(folder.id) > 0">
+ <li ng-show="Navigation.getFolderUnreadCount(folder.id) > 0" class="mark-read">
<button class="icon-checkmark"
ng-click="Navigation.markFolderRead(folder.id)"
title="<?php p($l->t('Mark all articles read')); ?>">
diff --git a/templates/part.navigation.unreadfeed.php b/templates/part.navigation.unreadfeed.php
index 4bb225d2c..9c9f3c293 100644
--- a/templates/part.navigation.unreadfeed.php
+++ b/templates/part.navigation.unreadfeed.php
@@ -29,7 +29,7 @@
<div class="app-navigation-entry-menu">
<ul>
- <li><button class="icon-checkmark"
+ <li class="mark-read"><button class="icon-checkmark"
title="<?php p($l->t('Mark all articles read')); ?>"
ng-click="Navigation.markRead()"></button>
</li>