How do I prevent angular-ui modal from closing?

后端 未结 6 892
再見小時候
再見小時候 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:33

    backdrop : 'static'
    

    Will work for 'click' events but still you can use "Esc" key to close the popup.

    keyboard :false
    

    to prevent popup close by "Esc" key.

    Thanks to pkozlowski.opensource for answer.

    I think question is duplicate of Angular UI Bootstrap Modal - how to prevent user interaction

提交回复
热议问题