diff options
-rw-r--r-- | management/editor/elements.go | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/management/editor/elements.go b/management/editor/elements.go index 0f48400..4d9bd28 100644 --- a/management/editor/elements.go +++ b/management/editor/elements.go @@ -386,11 +386,8 @@ func Tags(fieldName string, p interface{}, attrs map[string]string) []byte { chips.on('chip.delete', function(e, chip) { // convert tag string to class-like selector "some tag" -> ".some.tag" - var sel = '.__ponzu-tag'; - if (chip.tag.length > 0) { - sel += '.'; - sel += chip.tag.split(' ').join('.'); - } + console.log(chip.tag); + var sel = '.__ponzu-tag' + '.' + chip.tag.split(' ').join('.'); chips.parent().find(sel).remove(); // iterate through all hidden tag inputs to re-name them with the correct ` + name + `.index |