summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/contactFilter.html7
-rw-r--r--templates/propertyGroup.html1
2 files changed, 6 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
diff --git a/templates/propertyGroup.html b/templates/propertyGroup.html
index e25ba091..dd45df4e 100644
--- a/templates/propertyGroup.html
+++ b/templates/propertyGroup.html
@@ -1,6 +1,7 @@
<h3 class="propertyGroup__title">
<i ng-class="ctrl.getIconClass()"></i>
{{ctrl.getReadableName()}}
+ <i ng-if="ctrl.meta.info.length" ng-class="ctrl.getInfoClass()" id="info" tooltip-append-to-body="true" tooltip-placement="right" uib-tooltip="{{ctrl.getInfoText()}}"></i>
</h3>
<detailsItem ng-repeat="property in ctrl.properties" name="ctrl.name" data="property" model="ctrl.contact" index="$index"
class="details-item-{{ctrl.name}}" ng-class="{ 'failed': ctrl.contact.failedProps.indexOf(ctrl.name) !== -1 }"></detailsItem>