Skip to content

Instantly share code, notes, and snippets.

@DavidePastore
Forked from makeusabrew/bb-dialog-v4.x.js
Last active August 21, 2016 11:01
Show Gist options
  • Save DavidePastore/466dac37569e8e907a73f80ea7dfa167 to your computer and use it in GitHub Desktop.
Save DavidePastore/466dac37569e8e907a73f80ea7dfa167 to your computer and use it in GitHub Desktop.
bootbox.dialog({
message: "I am a custom dialog",
title: "Custom title",
buttons: [
{
key: "success",
label: "Success!",
className: "btn-success",
callback: function() {
Example.show("great success");
}
},
{
key: "danger",
label: "Danger!",
className: "btn-danger",
callback: function() {
Example.show("uh oh, look out!");
}
},
{
key: "main",
label: "Click ME!",
className: "btn-primary",
callback: function() {
Example.show("Primary button");
}
}
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment