Skip to content

Instantly share code, notes, and snippets.

@cdcarson
Last active August 12, 2017 01:02
Show Gist options
  • Save cdcarson/7a5c76a9b32be47204ab1433571b630a to your computer and use it in GitHub Desktop.
Save cdcarson/7a5c76a9b32be47204ab1433571b630a to your computer and use it in GitHub Desktop.
<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