This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/initializers/bootbox.js.es6

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);
}
};