Last active
October 10, 2018 19:32
-
-
Save zephenryus/791116b8f42fac5472a8087d5ef2f439 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
<div class="dropdown" [ngClass]="{'show': isOpen}"> | |
<button class="btn btn-primary dropdown-toggle" type="button" (click)="toggleOpen()"> | |
{{ title }} | |
</button> | |
<div class="dropdown-menu" [ngClass]="{'show': isOpen, 'dropdown-menu-right': align === 'right'}"> | |
<ng-content></ng-content> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment