summaryrefslogtreecommitdiffstats
path: root/templates/part.navigation.feed.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-09-11 20:26:04 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-09-11 20:26:04 +0200
commitf3091d84e14537a42334e66ea6588cf2b83f9ab6 (patch)
tree943151aa564177e956d5dc1b2fff12845e48c4c0 /templates/part.navigation.feed.php
parentf50dba835fa58f9ba979a9038ffd185ab8fe3b96 (diff)
various work on creating feeds, folders and showing folders
Diffstat (limited to 'templates/part.navigation.feed.php')
-rw-r--r--templates/part.navigation.feed.php14
1 files changed, 5 insertions, 9 deletions
diff --git a/templates/part.navigation.feed.php b/templates/part.navigation.feed.php
index 7b20f3aed..47f6a340f 100644
--- a/templates/part.navigation.feed.php
+++ b/templates/part.navigation.feed.php
@@ -9,7 +9,7 @@
|| Navigation.isFeedActive(feed.id)
|| !feed.id"
data-id="{{ feed.id }}"
- class="feed has-counter has-menu"
+ class="feed with-counter with-menu"
news-draggable="{
stack: '> li',
zIndex: 1000,
@@ -21,13 +21,9 @@
}">
<a ng-style="{ backgroundImage: 'url(' + feed.faviconLink + ')'}"
- ng-class="{
- 'progress-icon': !feed.id,
- 'problem-icon': feed.error
- }"
ng-if="!feed.editing && !feed.deleted"
ng-href="#/items/feeds/{{ feed.id }}/"
- class="title icon-loading"
+ class="title"
title="{{ feed.title }}">
{{ feed.title }}
</a>
@@ -58,8 +54,7 @@
{{ Navigation.getFeedUnreadCount(feed.id) | unreadCountFormatter }}
</li>
<li class="app-navigation-entry-utils-menu-button">
- <button ng-click="App.toggleMenu('f' + feed.id)"
- title="<?php p($l->t('Menu')); ?>"></button>
+ <button title="<?php p($l->t('Menu')); ?>"></button>
</li>
</ul>
</div>
@@ -71,9 +66,10 @@
title="<?php p($l->t('Rename feed')); ?>"></button></li>
<li><button ng-click="Navigation.deleteFeed(feed)"
class="icon-delete"
- title="<?php p($l->t('Delete website')); ?>"></button></li>
+ title="<?php p($l->t('Delete feed')); ?>"></button></li>
<li><button ng-show="Navigation.getFeedUnreadCount(feed.id) > 0"
class="icon-checkmark"
+ ng-click="Navigation.markFeedRead(feed.id)"
title="<?php p($l->t('Read all')); ?>"></button></li>
</ul>
</div>