Browse Source

lights: selector typo

master
Max Prokhorov 5 years ago
parent
commit
f8deb535b5
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      code/html/custom.js

+ 2
- 2
code/html/custom.js View File

@ -1471,13 +1471,13 @@ function processData(data) {
if ("rgb" === key) {
initColor({rgb: true});
$("input[name='color']").wheelColorPicker("setValue", value, true);
setPickerRGB($("input[name='color']"), value);
return;
}
if ("hsv" === key) {
initColor({hsv: true});
setPickerHSV(value);
setPickerHSV($("input[name='color']"), value);
return;
}


Loading…
Cancel
Save