Skip to content

Commit fd6ffc5

Browse files
authored
Deprecated: Define .hover() using non-deprecated methods
Make the deprecated `.hover()` method not rely on other deprecated methods: `.mouseenter()` & `.mouseleave()`. Use `.on()` instead. Closes gh-5251
1 parent 6616acf commit fd6ffc5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/deprecated/event.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jQuery.fn.extend( {
2424
},
2525

2626
hover: function( fnOver, fnOut ) {
27-
return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
27+
return this
28+
.on( "mouseenter", fnOver )
29+
.on( "mouseleave", fnOut || fnOver );
2830
}
2931
} );
3032

0 commit comments

Comments
 (0)