I do not know if it has, but I need to block the closure of the twitter-bootstrap modal when the user clicks outside the element area, only allowing to close it by clicking the close buttons.
I do not know if it has, but I need to block the closure of the twitter-bootstrap modal when the user clicks outside the element area, only allowing to close it by clicking the close buttons.
According to the documentation , just put the data-backdrop="static"
attribute in your modal:
<div class="modal fade" data-backdrop="static">
...
</div>