Created
February 19, 2019 08:03
-
-
Save calvez/f11336af3e241d0e32ae455969aa90bd to your computer and use it in GitHub Desktop.
don't close bootstrap 3 modal with key or click outside
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
source: https://stackoverflow.com/a/22208662 | |
--> | |
<button data-target="#myModal" data-toggle="modal" data-backdrop="static" data-keyboard="false"> | |
Launch demo modal | |
</button>` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#myModal').modal({backdrop: 'static', keyboard: false}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment