summaryrefslogtreecommitdiff
path: root/web-ui/app/templates/tags
diff options
context:
space:
mode:
authorAlexandre Pretto Nunes <anunes@thoughtworks.com>2014-12-17 19:19:25 -0200
committerAlexandre Pretto Nunes <anunes@thoughtworks.com>2015-01-06 16:27:26 -0200
commit7ab9f9423004adf1df9cc1be1b2a5ae7eade4a95 (patch)
treebb8aeadbc6f9ce4798ce1eaabc40d66972ba1f5b /web-ui/app/templates/tags
parent0ff59644d8e804bcab928d184b31a5e6cdc2f6ed (diff)
Separate auto-refresh for mails and tags, and start moving away from having the left_pane_dispatcher as a middleman
Diffstat (limited to 'web-ui/app/templates/tags')
-rw-r--r--web-ui/app/templates/tags/shortcut.hbs4
-rw-r--r--web-ui/app/templates/tags/tag.hbs2
2 files changed, 3 insertions, 3 deletions
diff --git a/web-ui/app/templates/tags/shortcut.hbs b/web-ui/app/templates/tags/shortcut.hbs
index 49ddfdb2..5fa32320 100644
--- a/web-ui/app/templates/tags/shortcut.hbs
+++ b/web-ui/app/templates/tags/shortcut.hbs
@@ -1,4 +1,4 @@
-<li>
+<li class="{{ selected }}">
<a title="{{ tagName }}">
{{#if displayBadge }}
<span class="{{ badgeType }}-count">{{ count }}</span>
@@ -6,4 +6,4 @@
<i class="fa fa-{{ icon }}"></i>
<div class="shortcut-label">{{ tagName }}</div>
</a>
-</li> \ No newline at end of file
+</li>
diff --git a/web-ui/app/templates/tags/tag.hbs b/web-ui/app/templates/tags/tag.hbs
index c645f782..a7b02e21 100644
--- a/web-ui/app/templates/tags/tag.hbs
+++ b/web-ui/app/templates/tags/tag.hbs
@@ -1,3 +1,3 @@
-<li id="tag-{{ ident }}">
+<li id="tag-{{ ident }}" class="{{ selected }}">
{{> tag_inner }}
</li>