feat: added default project
All checks were successful
Deploy to GitHub Pages / build_site (push) Successful in 1m48s

This commit is contained in:
2024-04-25 17:13:08 +02:00
parent c1e6d141bf
commit 66ae9e6c72
7 changed files with 116 additions and 112 deletions

View File

@ -64,15 +64,15 @@
inputEl.focus();
}
setTimeout(() => {
if (value >= 0) {
max = getBoundingValue(value);
min = 0;
} else {
min = getBoundingValue(value);
max = 0;
}
}, 500);
// setTimeout(() => {
// if (value >= 0) {
// max = getBoundingValue(value);
// min = 0;
// } else {
// min = getBoundingValue(value);
// max = 0;
// }
// }, 500);
document.body.style.cursor = "unset";
window.removeEventListener("mouseup", handleMouseUp);