Created
February 26, 2015 17:48
-
-
Save devdays/7365a7d5403899f40987 to your computer and use it in GitHub Desktop.
Private hover method for widget
This file contains 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
_hover: function (event) { | |
$(event.target).toggleClass("ui-state-active", e.type === "mouseenter"); | |
this._trigger("hover", event, { | |
hovered: $(e.target) | |
}); | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment