Skip to content

Instantly share code, notes, and snippets.

@cdcarson
Last active August 12, 2017 00:12
Show Gist options
  • Save cdcarson/cca654914a9f43d4bb32ed8d350e53a3 to your computer and use it in GitHub Desktop.
Save cdcarson/cca654914a9f43d4bb32ed8d350e53a3 to your computer and use it in GitHub Desktop.
<button class="btn btn-primary" (click)="animateModal.show()">Modal With Animation</button>
<ng-template nzbModal #animateModal="nzbModal">
<!-- NOTE .fade class -->
<div class="modal fade" tabindex="-1">...</div>
</ng-template>
<button class="btn btn-primary" (click)="inanimateModal.show()">Modal Without Animation</button>
<ng-template nzbModal #inanimateModal="nzbModal">
<!-- NOTE absence of .fade class -->
<div class="modal" tabindex="-1">...</div>
</ng-template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment