Last active
August 12, 2017 01:27
-
-
Save cdcarson/a369cbfb1f692c8701449534bbfecd0f 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)="defaultModal.show()">Default Behavior</button> | |
<ng-template nzbModal #defaultModal="nzbModal"> | |
<!-- same as data-focus="true" --> | |
<div class="modal fade" tabindex="-1">...</div> | |
</ng-template> | |
<button class="btn btn-primary" (click)="noFocusModal.show()">Focus = false</button> | |
<ng-template nzbModal #noFocusModal="nzbModal"> | |
<div class="modal fade" tabindex="-1" data-focus="false">...</div> | |
</ng-template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment