Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
emodric committed Nov 17, 2016
1 parent b8a3fd2 commit 5474b65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion design/standard/javascript/jquery.eztags.js
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@
],
suggestedItem: ['<li class="js-suggested-item" data-cid="<%= tag.cid %>" title="<%=tr.clickAddThisTag%>"><img src="<%=tag.flagSrc %>"/><%=tag.name%></li>'],
selectedItem: ['<li data-cid="<%= tag.cid %>"><img src="<%=tag.flagSrc %>" /><%=tag.name%><a href="#" class="js-tags-remove" title="<%=tr.removeTag%>">&times;</a></li>'],
autocompleteItem: ['<div data-cid="<%= tag.cid %>" class="js-autocomplete-item resultItem<%= tag.main_tag_id !== "0" ? " itemSynonim" : "" %>"><a href="#"><img src="<%=tag.flagSrc %>"/><%=tag.name%><span><%= tag.parent_name %></span></a></div>'],
autocompleteItem: ['<div data-cid="<%= tag.cid %>" class="js-autocomplete-item resultItem<%= tag.main_tag_id !== "0" ? " itemSynonym" : "" %>"><a href="#"><img src="<%=tag.flagSrc %>"/><%=tag.name%><span><%= tag.parent_name %></span></a></div>'],
}
};

Expand Down
2 changes: 1 addition & 1 deletion design/standard/stylesheets/tagssuggest.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ position: absolute;
height:auto;
cursor:pointer;
}
.jsonSuggestResults .resultItem.itemSynonim {
.jsonSuggestResults .resultItem.itemSynonym {
font-style: italic;
}
.jsonSuggestResults .resultItem a {padding:5px;}
Expand Down

0 comments on commit 5474b65

Please sign in to comment.