( donor )
| 886 | }; |
| 887 | |
| 888 | function handler( donor ) { |
| 889 | // Donor event is always a native one; fix it and switch its type. |
| 890 | // Let focusin/out handler cancel the donor focus/blur event. |
| 891 | var e = jQuery.event.fix( donor ); |
| 892 | e.type = fix; |
| 893 | e.originalEvent = {}; |
| 894 | jQuery.event.trigger( e, null, e.target ); |
| 895 | if ( e.isDefaultPrevented() ) { |
| 896 | donor.preventDefault(); |
| 897 | } |
| 898 | } |
| 899 | }); |
| 900 | } |
| 901 |
nothing calls this directly
no outgoing calls
no test coverage detected