Add on label tiles a tooltip with the label name.

This commit is contained in:
Nathanaël Jourdane
2017-02-26 14:17:26 +01:00
parent 67f26ef9b2
commit 2d7e6f2efa

View File

@@ -52,7 +52,7 @@
<h3>{{ c.title }}</h3> <h3>{{ c.title }}</h3>
<ul class="labels"> <ul class="labels">
<li ng-repeat="label in c.labels" <li ng-repeat="label in c.labels"
style="background-color: #{{ label.color }};"> style="background-color: #{{ label.color }};" title="{{ label.title }}">
<span>{{ label.title }}</span> <span>{{ label.title }}</span>
</li> </li>
</ul> </ul>
@@ -125,4 +125,4 @@
</div> </div>
</div> </div>
</div> </div>