diff --git a/assets/js/modules/build.js b/assets/js/modules/build.js index ffb937e..e396823 100644 --- a/assets/js/modules/build.js +++ b/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 += "" + tag + ""; }); + + html += editTagsHTML; } else { - editTagsHTML = (forView===true||lychee.publicMode) ? "" : " " + build.editIcon("edit_tags"); + html = "
No Tags" + editTagsHTML + "
"; }