Created
May 7, 2017 10:34
-
-
Save AlexanderKozhevin/2a76bada95268e6d64632dd42d8bf4e9 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
<ngb-accordion #acc="ngbAccordion" activeIds="ngb-panel-0"> | |
<ngb-panel title="Simple"> | |
<ng-template ngbPanelContent> | |
Sample content | |
</ng-template> | |
</ngb-panel> | |
<ngb-panel> | |
<ng-template ngbPanelTitle> | |
<span>★ <b>Fancy</b> title ★</span> | |
</ng-template> | |
<ng-template ngbPanelContent> | |
Sample content | |
</ng-template> | |
</ngb-panel> | |
<ngb-panel title="Disabled" [disabled]="true"> | |
<ng-template ngbPanelContent> | |
Sample content | |
</ng-template> | |
</ngb-panel> | |
</ngb-accordion> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment