hide appended color pickers

pull/1/head
ansuz 8 years ago
parent 2326526f95
commit 5dbd16a956

@ -521,6 +521,7 @@ define([
if ($testColor.attr('type') !== "color" || $testColor.val() === '!') { return; } // TODO
$back.on('click', function() {
var $picker = $('<input>', { type: 'color', value: backColor })
.css({ display: 'none', })
.on('change', function() {
updateColors(undefined, this.value);
onLocal();
@ -532,6 +533,7 @@ define([
});
$text.on('click', function() {
var $picker = $('<input>', { type: 'color', value: textColor })
.css({ display: 'none', })
.on('change', function() {
updateColors(this.value, undefined);
onLocal();

Loading…
Cancel
Save