diff options
author | Alexandre Pretto Nunes <anunes@thoughtworks.com> | 2015-02-10 17:32:14 -0200 |
---|---|---|
committer | Alexandre Pretto Nunes <anunes@thoughtworks.com> | 2015-02-19 16:41:24 -0200 |
commit | 88c5ddd2f3af1a5a38c9a501543363aba00323c0 (patch) | |
tree | 3ea9de789961d03bf796a95d28ed88a5432268ab /web-ui/app | |
parent | 518856ed261ba3bdd1270dff45151db967c72434 (diff) |
#239 Remove tags shortcuts
Diffstat (limited to 'web-ui/app')
-rw-r--r-- | web-ui/app/index.html | 10 | ||||
-rw-r--r-- | web-ui/app/js/tags/ui/tag_list.js | 3 |
2 files changed, 0 insertions, 13 deletions
diff --git a/web-ui/app/index.html b/web-ui/app/index.html index 84d70a2a..a60fbb61 100644 --- a/web-ui/app/index.html +++ b/web-ui/app/index.html @@ -40,16 +40,6 @@ <a class="left-off-canvas-toggle" href="#"> <i class=" toggle fa fa-navicon"></i> </a> - <ul id="tags-shortcuts" class="shortcuts"> - </ul> - <ul id="custom-tags-shortcuts" class="shortcuts"> - <li> - <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"> - </ul> - <a class="exit-off-canvas"></a> </div> <article id='middle-pane-container' class="small-5 medium-5 large-5 columns no-padding"> diff --git a/web-ui/app/js/tags/ui/tag_list.js b/web-ui/app/js/tags/ui/tag_list.js index 0c483abb..c9a66722 100644 --- a/web-ui/app/js/tags/ui/tag_list.js +++ b/web-ui/app/js/tags/ui/tag_list.js @@ -63,9 +63,6 @@ define( var list = tag.default ? defaultList : customList; var tagComponent = Tag.appendedTo(list, {tag: tag, currentTag: this.getCurrentTag()}); - if (_.contains(_.keys(ORDER), tag.name)) { - tagComponent.attr.shortcut = this.renderShortcut(tag, tagComponent); - } } function resetTagList(lists) { |