summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorsuntala <suntala@hotmail.com>2018-04-11 17:34:56 +0200
committersuntala <suntala@hotmail.com>2018-04-11 17:34:56 +0200
commitad957b6d07c6082f5dc5e60aaf4c56e027803a58 (patch)
tree02bcf90644cf4eefcbb3c434a64ea9959d1a4026 /templates
parentf8b8496f5aad9d56beb01bdbbb3e7f1afee4431c (diff)
Fix issue 445 to display number of contacts in tooltips.
Diffstat (limited to 'templates')
-rw-r--r--templates/contactFilter.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/templates/contactFilter.html b/templates/contactFilter.html
index 28755f5d..8dbbc6ba 100644
--- a/templates/contactFilter.html
+++ b/templates/contactFilter.html
@@ -1,6 +1,9 @@
<a ng-href="#/{{ctrl.contactFilter.name}}">{{ ctrl.contactFilter.name }}</a>
<div class="app-navigation-entry-utils">
<ul>
- <li class="app-navigation-entry-utils-counter">{{ctrl.contactFilter.count | counterFormatter}}</li>
+ <li class="app-navigation-entry-utils-counter" tooltip-placement="right"
+ uib-tooltip="{{ctrl.contactFilter.count | counterTooltipDisplay}}" tooltip-append-to-body="true">
+ {{ctrl.contactFilter.count | counterFormatter}}
+ </li>
</ul>
-</div>
+</div> \ No newline at end of file