( events )
| 3535 | rmouseEvent = /^(?:mouse|contextmenu)|click/, |
| 3536 | rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, |
| 3537 | hoverHack = function( events ) { |
| 3538 | return jQuery.event.special.hover ? events : events.replace( rhoverHack, "mouseenter$1 mouseleave$1" ); |
| 3539 | }; |
| 3540 | |
| 3541 | /* |
| 3542 | * Helper functions for managing events -- not part of the public interface. |
no outgoing calls
no test coverage detected
searching dependent graphs…