Remove useless code

This commit is contained in:
ClemDee 2019-08-08 14:46:28 +02:00
parent aceff466b9
commit ce6e4b0838

View File

@ -1206,7 +1206,6 @@ define([
$spinner.hide(); $spinner.hide();
$ok.show(); $ok.show();
}); });
$colorPicker.css('bakcground-color', val);
}; };
// jscolor picker // jscolor picker
@ -1219,7 +1218,6 @@ define([
common.getAttribute(['general', 'cursor', 'color'], function (e, val) { common.getAttribute(['general', 'cursor', 'color'], function (e, val) {
if (e) { return void console.error(e); } if (e) { return void console.error(e); }
val = val || "#000"; val = val || "#000";
$colorPicker.css('bakcground-color', val);
jscolorL.fromString(val); jscolorL.fromString(val);
}); });