Skip to content

Commit

Permalink
Merge pull request #3 from jlreymendez/master
Browse files Browse the repository at this point in the history
Fix hover close delay option
  • Loading branch information
joearcher authored Mar 17, 2017
2 parents db73e85 + 264b173 commit 6cea6fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Droppler.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default {
constrainToWindow: this.constrainToWindow ? true : false,
constrainToScrollParent: this.constrainToScrollParent ? true : false,
hoverOpenDelay: this.hoverOpenDelay ? this.hoverOpenDelay : 0,
hoverCloseDelay: this.hoverOpenDelay ? this.hoverCloseDelay : 50,
hoverCloseDelay: this.hoverCloseDelay ? this.hoverCloseDelay : 50,
focusDelay: this.focusDelay ? this.focusDelay : 0,
blurDelay: this.blurDelay ? this.blurDelay : 50,
tetherOptions: this.tetherOptions ? this.tetherOptions : {},
Expand Down

0 comments on commit 6cea6fe

Please sign in to comment.