Last active
August 12, 2017 01:02
-
-
Save cdcarson/7a5c76a9b32be47204ab1433571b630a to your computer and use it in GitHub Desktop.
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
<button class="btn btn-primary" (click)="defaultModal.show()">Modal With Backdrop</button> | |
<ng-template nzbModal #defaultModal="nzbModal"> | |
<!-- No attribute necessary -- same as data-backdrop="true" --> | |
<div class="modal fade" tabindex="-1">...</div> | |
</ng-template> | |
<button class="btn btn-primary" (click)="noBackdropModal.show()">Modal Without Backdrop</button> | |
<ng-template nzbModal #noBackdropModal="nzbModal"> | |
<div class="modal fade" tabindex="-1" data-backdrop="false">...</div> | |
</ng-template> | |
<button class="btn btn-primary" (click)="staticBackdropModal.show()">Modal With Static Backdrop</button> | |
<ng-template nzbModal #staticBackdropModal="nzbModal"> | |
<div class="modal fade" tabindex="-1" data-backdrop="static">...</div> | |
</ng-template> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment