ngBootbox
ngBootbox copied to clipboard
confirm has no title,can u add one ?
can you add a title to confirm ?it's too simple when no title for a confirm !
You can absolutely do that with $ngBootbox.customDialog(options)
For example,
var navigationOptions = {
message: 'Are you sure?',
title: 'Discard fees',
buttons: {
warning: {
label: "No",
className: "btn-default",
callback: function() {...}
},
success: {
label: "Yes",
className: "btn-danger",
callback: function() {...}
}
}
};
$ngBootbox.customDialog(navigationOptions);