How do I prevent angular-ui modal from closing?

后端 未结 6 867
再見小時候
再見小時候 2021-01-30 05:15

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

6条回答
  •  终归单人心
    2021-01-30 05:19

    While you creating your modal you can specify its behavior:

    $modal.open({
       // ... other options
       backdrop  : 'static',
       keyboard  : false
    });
    

提交回复
热议问题