Created
August 12, 2017 03:30
-
-
Save cdcarson/926023401d31f1981c8b9cbb6087b1d9 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)="smallModal.show()">Small Modal</button> | |
<ng-template nzbModal #smallModal="nzbModal"> | |
<div class="modal fade" tabindex="-1"> | |
<div class="modal-dialog modal-sm" role="document"> | |
.... | |
</div> | |
</div> | |
</ng-template> | |
<button class="btn btn-primary" (click)="largeModal.show()">Large Modal</button> | |
<ng-template nzbModal #largeModal="nzbModal"> | |
<div class="modal fade" tabindex="-1"> | |
<div class="modal-dialog modal-lg" role="document"> | |
... | |
</div> | |
</div> | |
</ng-template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment