( event )
| 684 | // In case of event delegation, we only need to rename the event.type, |
| 685 | // liveHandler will take care of the rest. |
| 686 | delegate = function( event ) { |
| 687 | event.type = event.data; |
| 688 | jQuery.event.handle.apply( this, arguments ); |
| 689 | }; |
| 690 | |
| 691 | // Create mouseenter and mouseleave events |
| 692 | jQuery.each({ |
nothing calls this directly
no outgoing calls
no test coverage detected