( event )
| 3177 | // In case of event delegation, we only need to rename the event.type, |
| 3178 | // liveHandler will take care of the rest. |
| 3179 | delegate = function( event ) { |
| 3180 | event.type = event.data; |
| 3181 | jQuery.event.handle.apply( this, arguments ); |
| 3182 | }; |
| 3183 | |
| 3184 | // Create mouseenter and mouseleave events |
| 3185 | jQuery.each({ |
nothing calls this directly
no outgoing calls
no test coverage detected