diff options
author | Gabriel Albo <gabriel@albo.com.br> | 2015-01-29 15:30:37 -0200 |
---|---|---|
committer | Gabriel Albo <gabriel@albo.com.br> | 2015-01-29 15:30:47 -0200 |
commit | e04a20be57e7d0d4278276ff59ebeb6fe0a934f3 (patch) | |
tree | 531666ebb69302e23d15cda0364fa0cb995bcbb4 /web-ui | |
parent | 494960adc6ed4444e1b7d2ce027567ceefb2f972 (diff) |
Removing all titles when hovering
Diffstat (limited to 'web-ui')
-rw-r--r-- | web-ui/app/index.html | 2 | ||||
-rw-r--r-- | web-ui/app/templates/page/logout_shortcut.hbs | 2 | ||||
-rw-r--r-- | web-ui/app/templates/tags/shortcut.hbs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/web-ui/app/index.html b/web-ui/app/index.html index 17570852..f845f128 100644 --- a/web-ui/app/index.html +++ b/web-ui/app/index.html @@ -35,7 +35,7 @@ </ul> <ul id="custom-tags-shortcuts" class="shortcuts"> <li> - <a class="left-off-canvas-toggle" href="#" title="View your tags"><i class="fa fa-tags"></i><div class="shortcut-label">Tags</div></a> + <a class="left-off-canvas-toggle" href="#"><i class="fa fa-tags"></i><div class="shortcut-label">Tags</div></a> </li> </ul> <ul id="logout-shortcut" class="shortcuts"> diff --git a/web-ui/app/templates/page/logout_shortcut.hbs b/web-ui/app/templates/page/logout_shortcut.hbs index 20df5513..dacedd7a 100644 --- a/web-ui/app/templates/page/logout_shortcut.hbs +++ b/web-ui/app/templates/page/logout_shortcut.hbs @@ -1,5 +1,5 @@ <li> - <a class="left-off-canvas-toggle logout" title="logout" > + <a class="left-off-canvas-toggle logout" > <i class="fa fa-sign-out"></i> <div class="shortcut-label">Logout</div> </a> diff --git a/web-ui/app/templates/tags/shortcut.hbs b/web-ui/app/templates/tags/shortcut.hbs index 5fa32320..1e82d6a9 100644 --- a/web-ui/app/templates/tags/shortcut.hbs +++ b/web-ui/app/templates/tags/shortcut.hbs @@ -1,5 +1,5 @@ <li class="{{ selected }}"> - <a title="{{ tagName }}"> + <a> {{#if displayBadge }} <span class="{{ badgeType }}-count">{{ count }}</span> {{/if}} |