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

Loading…
Cancel
Save