Skip to content

Instantly share code, notes, and snippets.

@cdcarson
Created August 12, 2017 03:30
Show Gist options
  • Save cdcarson/926023401d31f1981c8b9cbb6087b1d9 to your computer and use it in GitHub Desktop.
Save cdcarson/926023401d31f1981c8b9cbb6087b1d9 to your computer and use it in GitHub Desktop.
<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