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