20.02.2023, 08:28
The slider will hide if you click inside the widget. Add this to Custom JavaScript to change the behavior so clicking anywhere won't hide a widget if there's an open control (slider or any other):
Code:
if (window.hideControls) {
var hidecontrols = window.hideControls
, hidewidgets = window.hideWidgets
, hidden;
window.hideControls = function() {
hidden = $E.controls.filter('.show').length > 0;
hidecontrols();
setTimeout(function() {
hidden = false;
}, 10);
}
window.hideWidgets = function() {
if (!hidden) {
hidewidgets();
}
}
}