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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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";
}