I'm not able to catch the show event for the bootbox.confirm dialog in order to do some css adjustments to the dialog before showing it.
I tried things like the followings but didn't succeed:
$(document).on("show.bs.modal", function (event) {...});
$(document).on("show", function (event) {...});
$(document).on("show", ".bootbox", function (event) {...});
This should work for you using Bootbox 4.x.x and Bootstrap 3.x.x:
var box = bootbox.dialog({
message: '',
title: '',
buttons: {},
show: false
});
box.on("shown.bs.modal", function() {
alert('it worked!');
});
box.modal('show');
or like this:
$(document).on("shown.bs.modal", function (event) {...});