mirror of
https://github.com/s00500/ESPUI.git
synced 2025-07-04 06:10:18 +00:00
Fix issue where grouped sliders are moved programatically.
This commit is contained in:
2
data/js/controls.js
vendored
2
data/js/controls.js
vendored
@ -514,7 +514,7 @@ function start() {
|
||||
|
||||
case UPDATE_SLIDER:
|
||||
$("#sl" + data.id).attr("value", data.value)
|
||||
slider_move($("#id" + data.id), data.value, "100", false);
|
||||
slider_move($("#sl" + data.id).parent().parent(), data.value, "100", false);
|
||||
if(data.hasOwnProperty('elementStyle')) {
|
||||
$("#sl" + data.id).attr("style", data.elementStyle);
|
||||
}
|
||||
|
Reference in New Issue
Block a user