I am using Angular UI $modal in my project http://angular-ui.github.io/bootstrap/#/modal
I don\'t want user to close the modal by pressing on backdrop. I want a modal
While you creating your modal you can specify its behavior:
$modal.open({ // ... other options backdrop : 'static', keyboard : false });