show and close scheduler window

This commit is contained in:
Justin
2023-04-21 18:52:09 +08:00
committed by GitHub
parent 615cbad803
commit dec06a2b9b

View File

@@ -2613,3 +2613,17 @@ function portfolioCryptoValidate() {
}
}
// scheduler show div
function showScheduler() {
document.getElementById('scheduler-div').style.display = "block";
}
function closeScheduler() {
document.getElementById('scheduler-div').style.display = "none";
}