( event )
| 2808 | // In case of event delegation, we only need to rename the event.type, |
| 2809 | // liveHandler will take care of the rest. |
| 2810 | delegate = function( event ) { |
| 2811 | event.type = event.data; |
| 2812 | jQuery.event.handle.apply( this, arguments ); |
| 2813 | }; |
| 2814 | |
| 2815 | // Create mouseenter and mouseleave events |
| 2816 | jQuery.each({ |
nothing calls this directly
no outgoing calls
no test coverage detected