13 lines
216 B
JavaScript
13 lines
216 B
JavaScript
/**
|
|
Default settings for bootbox
|
|
**/
|
|
export default {
|
|
name: "bootbox",
|
|
initialize: function() {
|
|
bootbox.animate(false);
|
|
|
|
// clicking outside a bootbox modal closes it
|
|
bootbox.backdrop(true);
|
|
}
|
|
};
|