Files
zaccaria.majid d50b167b9d inizio anim
2023-05-18 11:13:48 +02:00

13 lines
346 B
JavaScript

window.enableSelect = function (elementId) {
document.getElementById(elementId).disabled = false;
}
window.disableSelect = function (elementId) {
document.getElementById(elementId).disabled = true;
}
window.getWindowDimensions = function () {
return {
width: window.innerWidth,
height: window.innerHeight
};
};