From f5f1391bf2b661f14182d2827345481c0770cf3f Mon Sep 17 00:00:00 2001 From: Steve Manuel Date: Mon, 5 Dec 2016 12:21:17 -0800 Subject: adding test fix to Tags input element when added to existing content type --- management/editor/elements.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'management') diff --git a/management/editor/elements.go b/management/editor/elements.go index 4a95150..0f48400 100644 --- a/management/editor/elements.go +++ b/management/editor/elements.go @@ -386,9 +386,11 @@ 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.'+chip.tag.split(' ').join('.'); - console.log(sel); - console.log(chips.parent().find(sel)); + var sel = '.__ponzu-tag'; + if (chip.tag.length > 0) { + sel += '.'; + sel += chip.tag.split(' ').join('.'); + } chips.parent().find(sel).remove(); // iterate through all hidden tag inputs to re-name them with the correct ` + name + `.index -- cgit v1.2.3