Browse Source

Show edit icon on tags

Tobias Reich 10 years ago
parent
commit
c4ba5ea64e
1 changed files with 4 additions and 2 deletions
  1. 4 2
      assets/js/modules/build.js

+ 4 - 2
assets/js/modules/build.js

@@ -244,7 +244,7 @@ build = {
 	tags: function(tags, forView) {
 
 		var html = "",
-			editTagsHTML;
+			editTagsHTML = (forView===true||lychee.publicMode) ? "" : " " + build.editIcon("edit_tags");
 
 		if (tags!=="") {
 
@@ -255,10 +255,12 @@ build = {
 				html += "<a class='tag'>" + tag + "<span class='icon-remove' data-index='" + index + "'></span></a>";
 
 			});
+			
+			html += editTagsHTML;
 
 		} else {
 
-			editTagsHTML = (forView===true||lychee.publicMode) ? "" : " " + build.editIcon("edit_tags");
+			
 			html = "<div class='empty'>No Tags" + editTagsHTML + "</div>";
 
 		}