Hi I set the default for twitter bootstrap modals to not close when the user clicks on the background
$.fn.modal.defaults = {
backdrop: 'static'
, keyboard: false
, show: false
}
However, there is one particular scenario whereby I need to overwrite this default to allow the user to click the background to close the modal.
I tried to overwrite it when displaying the particular modal
//Modal to be displayed and allow user to close it by clicking on background
view = new Onethingaday.Views.Muses.MuseModalView
model: @options.muse
$('.modal').html view.render().el
$('.modal').bind 'shown', =>
$('.modal').modal
'backdrop': true
('.modal').unbind 'show'
$('.modal').modal('show')
However, my code above doesn't work. Anyone has any idea how can modify the code to make it work. Also, the code above seem to be changing the default behavior of ALL my modals in the app which is not what I want. How do I change the backdrop just for this particular modal (i.e. MuseModalView)? Thanks!
options? Like:$('#myModal').modal({ backdrop: true });– dunli Jan 10 at 2:38