jquery-palette-color-picker icon indicating copy to clipboard operation
jquery-palette-color-picker copied to clipboard

Suggestion

Open mcain66 opened this issue 7 years ago • 0 comments

Hi, a suggestion: add a setting to use the color's name (current/default, when supplied) or the color's value (option). Changes I've applied to make the option work:

Line 89: if (key === current_value) { --> if (col=== current_value) {

And line 227: $('[name="' + $button.attr('data-target') + '"]').val(name); --> $('[name="' + $button.attr('data-target') + '"]').val(col);

mcain66 avatar Jan 23 '18 20:01 mcain66