From 97f0aad52fbd5bdc0335f7f56875aa3807f83fa8 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Tue, 12 Aug 2014 08:07:54 -0400 Subject: [PATCH] Fix missing preview widget for color inputs (#3297) --- plugins/kolab_tags/kolab_tags.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/kolab_tags/kolab_tags.js b/plugins/kolab_tags/kolab_tags.js index 60da2dc5..14d28e7f 100644 --- a/plugins/kolab_tags/kolab_tags.js +++ b/plugins/kolab_tags/kolab_tags.js @@ -296,13 +296,13 @@ function tag_form_dialog(id) color_input.val(tag.color.replace(/^#/, '')); } } - color_input.miniColors({colorValues: rcmail.env.mscolors}); // display form form.children().hide(); form.append(content); content.append([name_label, name_input, '
', color_label, color_input]).show(); name_input.focus(); + color_input.miniColors({colorValues: rcmail.env.mscolors}); } // save tags form (create/update/delete tags)