Created
February 20, 2023 14:38
-
-
Save YonatanKra/9a32bd9fb3d8cbb6a0a05e25a12eb004 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function error(errorMessage) { | |
dialog.headline = "Wrong Answer!" | |
dialog.text = "Close this dialog and try again please"; | |
dialog.showModal(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function success() { | |
dialog.headline = "Success!" | |
dialog.text = "Close this for the next question!"; | |
dialog.showModal(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment