( events )
| 2630 | rmouseEvent = /^(?:mouse|contextmenu)|click/, |
| 2631 | rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, |
| 2632 | hoverHack = function( events ) { |
| 2633 | return jQuery.event.special.hover ? events : events.replace( rhoverHack, "mouseenter$1 mouseleave$1" ); |
| 2634 | }; |
| 2635 | |
| 2636 | /* |
| 2637 | * Helper functions for managing events -- not part of the public interface. |