Skip to content

Instantly share code, notes, and snippets.

@zephenryus
Last active October 10, 2018 19:32
Show Gist options
  • Save zephenryus/791116b8f42fac5472a8087d5ef2f439 to your computer and use it in GitHub Desktop.
Save zephenryus/791116b8f42fac5472a8087d5ef2f439 to your computer and use it in GitHub Desktop.
<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