1
0
mirror of https://github.com/s00500/ESPUI.git synced 2025-07-04 06:10:18 +00:00
This commit is contained in:
Ian Gray
2021-12-29 17:52:03 +00:00
parent 1df56772d9
commit aaea0fb877
3 changed files with 10 additions and 3 deletions

5
data/js/controls.js vendored
View File

@ -817,6 +817,11 @@ function start() {
element.addClass(colorClass(data.color));
}
}
$(".range-slider__range").each(function(){
$(this)[0].value = $(this).attr("value");
$(this).next().html($(this).attr("value"));
});
};
websock.onmessage = handleEvent;