Last active
August 11, 2017 16:18
-
-
Save cdcarson/02056baa5e8ce89ad2cd4f06c6913d9e 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)="exampleModal1.show()">Show Modal</button> | |
<nzb-modal #exampleModal1="nzbModal"> | |
<div class="modal-dialog" role="document"> | |
<div class="modal-content"> | |
<div class="modal-header"> | |
<h5 class="modal-title">Modal title</h5> | |
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> | |
<span aria-hidden="true">×</span> | |
</button> | |
</div> | |
<div class="modal-body"> | |
<p>Modal body text goes here.</p> | |
</div> | |
<div class="modal-footer"> | |
<button type="button" class="btn btn-primary">Save changes</button> | |
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> | |
</div> | |
</div> | |
</div> | |
</nzb-modal> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment