Last active
August 12, 2017 00:12
-
-
Save cdcarson/cca654914a9f43d4bb32ed8d350e53a3 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)="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