summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2018-04-12 13:57:34 +0200
committerGitHub <noreply@github.com>2018-04-12 13:57:34 +0200
commit021125b08da90729aeae802a73f16276e7101acf (patch)
tree5414646b493c0d7e5803c2707abdc02229ab91a0 /templates
parent69fd37d80b4f89c66bdb673fc7c0d5ad065a71c8 (diff)
parent4c3e08ed59735b5b327585d568bc780af9471d16 (diff)
Merge pull request #542 from nextcloud/fix-issue-445cont
Add Tooltips for non default groups
Diffstat (limited to 'templates')
-rw-r--r--templates/group.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/group.html b/templates/group.html
index 2b458107..678a6723 100644
--- a/templates/group.html
+++ b/templates/group.html
@@ -1,6 +1,8 @@
<a ng-href="#/{{ctrl.group.name}}">{{ ctrl.group.name }}</a>
<div class="app-navigation-entry-utils">
<ul>
- <li class="app-navigation-entry-utils-counter">{{ctrl.group.count | counterFormatter}}</li>
+ <li class="app-navigation-entry-utils-counter" tooltip-placement="right" uib-tooltip="{{ctrl.group.count | counterTooltipDisplay}}"
+ tooltip-append-to-body="true">{{ctrl.group.count | counterFormatter}}
+ </li>
</ul>
</div>