Skip to content

Instantly share code, notes, and snippets.

@k-nut
Last active August 29, 2015 14:11
Show Gist options
  • Save k-nut/ceff736be60c76cb6047 to your computer and use it in GitHub Desktop.
Save k-nut/ceff736be60c76cb6047 to your computer and use it in GitHub Desktop.
bootbox.prompt({
title: "What is your real name?",
value: "makeusabrew",
callback: function(result) {
if (result === null) {
Example.show("Prompt dismissed");
} else {
Example.show("Hi <b>"+result+"</b>");
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment