Created
October 20, 2016 21:48
-
-
Save max-winderbaum/fb6d39f37a69d8746821463a77f646ae 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
const handlers = new Map({ | |
handlePhraseMouseEnter(phrase) { | |
hoverState.handleMouseEnter(phrase); | |
phraseConfig.handleMouseEnter(phrase); | |
}, | |
handlePhraseMouseLeave(phrase) { | |
hoverState.handleMouseLeave(phrase); | |
phraseConfig.handleMouseLeave(phrase); | |
}, | |
handlePhraseClick: phraseConfig.handlePhraseClick, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment