Skip to content

Instantly share code, notes, and snippets.

@YonatanKra
Created February 20, 2023 14:38
Show Gist options
  • Save YonatanKra/9a32bd9fb3d8cbb6a0a05e25a12eb004 to your computer and use it in GitHub Desktop.
Save YonatanKra/9a32bd9fb3d8cbb6a0a05e25a12eb004 to your computer and use it in GitHub Desktop.
function error(errorMessage) {
dialog.headline = "Wrong Answer!"
dialog.text = "Close this dialog and try again please";
dialog.showModal();
}
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