Skip to content

Commit 7287894

Browse files
committed
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 (cherry picked from commit fd6ffc5)
1 parent b473729 commit 7287894

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
@@ -28,7 +28,9 @@ jQuery.fn.extend( {
2828
},
2929

3030
hover: function( fnOver, fnOut ) {
31-
return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
31+
return this
32+
.on( "mouseenter", fnOver )
33+
.on( "mouseleave", fnOut || fnOver );
3234
}
3335
} );
3436

0 commit comments

Comments
 (0)