Skip to content
This repository has been archived by the owner on Jul 6, 2020. It is now read-only.

Commit

Permalink
Show full unread count when hovering over the unread count
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernhard Posselt committed Sep 19, 2014
1 parent 4d20b6d commit fdc3833
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ owncloud-news (3.002)
* **Bugfix**: Fix o shortcut in expanded view
* **Bugfix**: Make **em** tag cursive and black
* **Enhancement**: Cut mark read timeout in half
* **Enhancement**: Show full unread count when hovering over the unread count

owncloud-news (3.001)
* **New dependency**: Minimum ownCloud version: 8
Expand Down
3 changes: 2 additions & 1 deletion templates/part.navigation.feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ class="action icon-checkmark">
ng-show="feed.id && !feed.editing && !feed.error && !feed.deleted">
<ul>
<li class="app-navigation-entry-utils-counter"
ng-show="feed.id && Navigation.getFeedUnreadCount(feed.id) > 0">
ng-show="feed.id && Navigation.getFeedUnreadCount(feed.id) > 0"
title="{{ Navigation.getFeedUnreadCount(feed.id) }}">
{{ Navigation.getFeedUnreadCount(feed.id) | unreadCountFormatter }}
</li>
<li class="app-navigation-entry-utils-menu-button">
Expand Down
3 changes: 2 additions & 1 deletion templates/part.navigation.folder.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ class="title icon-folder"
ng-show="folder.id && !folder.editing && !folder.error && !folder.deleted">
<ul>
<li class="app-navigation-entry-utils-counter"
ng-show="folder.id && Navigation.getFolderUnreadCount(folder.id) > 0">
ng-show="folder.id && Navigation.getFolderUnreadCount(folder.id) > 0"
title="{{ Navigation.getFolderUnreadCount(folder.id) }}">
{{ Navigation.getFolderUnreadCount(folder.id) | unreadCountFormatter }}
</li>
<li class="app-navigation-entry-utils-menu-button">
Expand Down
3 changes: 2 additions & 1 deletion templates/part.navigation.starredfeed.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ class="starred has-counter">
<div class="app-navigation-entry-utils">
<ul>
<li class="app-navigation-entry-utils-counter"
ng-show="Navigation.getStarredCount() > 0">
ng-show="Navigation.getStarredCount() > 0"
title="{{ Navigation.getStarredCount() }}">
{{ Navigation.getStarredCount() | unreadCountFormatter }}
</li>
</ul>
Expand Down
3 changes: 2 additions & 1 deletion templates/part.navigation.unreadfeed.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ class="subscriptions has-counter has-menu">
<div class="app-navigation-entry-utils">
<ul>
<li class="app-navigation-entry-utils-counter"
ng-show="Navigation.getUnreadCount() > 0">
ng-show="Navigation.getUnreadCount() > 0"
title="{{ Navigation.getUnreadCount() }}">
{{ Navigation.getUnreadCount() | unreadCountFormatter }}
</li>
<li class="app-navigation-entry-utils-menu-button"><button ng-click="optionsId = (optionsId == 'all' ? -1 : 'all')"></button></li>
Expand Down

0 comments on commit fdc3833

Please sign in to comment.