Porównaj commity

...

2 Commity

Autor SHA1 Wiadomość Data
Henrik Werkström 95e65d55b3
Merge 03847bee41 into 00f5471270 2024-04-04 18:03:48 -05:00
Henrik 03847bee41 added function for activating granual input 2023-04-09 16:04:55 +02:00
1 zmienionych plików z 14 dodań i 1 usunięć

Wyświetl plik

@ -2917,7 +2917,20 @@ function mergeDeep(target, ...sources)
}
return mergeDeep(target, ...sources);
}
//Call this on what ever page you want to activate opening a dialog on double click on range sliders.
//You can also filter when to call it (activate the functionality) on other things, like device type or setting.
function actDblC(){
const rngSlds = d.querySelectorAll('input[type="range"]');
rngSlds.forEach(sld => {
sld.addEventListener("dblclick", () => {
const nVal = prompt(`New value (${sld.min}-${sld.max}):`);
if (nVal !== null) {
sld.value = nVal;
sld.dispatchEvent(new Event("change"));
}
});
});
}
size();
_C.style.setProperty('--n', N);