Kinda like @AymKdn's answer, but this will allow you to change the options without re-initializing the modal.
$('#myModal').data('modal').options.keyboard = false;
Of if you need to do multiple options, JavaScript's with comes in handy here!
with ($('#myModal').data("modal").options) {
backdrop = 'static';
keyboard = false;
}
If the modal is already open, these options will only take effect the next time the modal is opened. I can't figure out a way to change them on the fly to temporarily change an option while, let's say, the modal is loading or saving data or something.
Anyone know how this could be done?