comment out a style assignment that doesn't seem necessary

This commit is contained in:
ansuz 2017-04-09 11:55:27 +02:00
parent 8c629185e1
commit 108ab7e9de

View File

@ -106,10 +106,9 @@ define([
var $picker = $('<input>', { var $picker = $('<input>', {
type: 'color', type: 'color',
value: '#FFFFFF', value: '#FFFFFF',
}) })
.css({ // TODO confirm that this is safe to remove
visibility: 'hidden' //.css({ visibility: 'hidden' })
})
.on('change', function () { .on('change', function () {
var color = this.value; var color = this.value;
cb(color); cb(color);