Skip to content

Commit

Permalink
fix references
Browse files Browse the repository at this point in the history
  • Loading branch information
MrFrankel committed Sep 5, 2017
1 parent b708fe5 commit 08175d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/popper-content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export class PopperContent implements OnDestroy {
disableDefaultStyling: false,
placement: Placements.Auto,
boundariesElement: '',
trigger: Triggers.Hover,
trigger: Triggers.HOVER,
popperModifiers: {}
};

Expand Down Expand Up @@ -169,7 +169,7 @@ export class PopperContent implements OnDestroy {
@HostListener('mouseleave')
showOnLeave() {
this.isMouseOver = false;
if (this.popperOptions.trigger !== Triggers.Hover) {
if (this.popperOptions.trigger !== Triggers.HOVER) {
return;
}
this.hide();
Expand Down

0 comments on commit 08175d3

Please sign in to comment.