()
| 3650 | } |
| 3651 | |
| 3652 | function complete(){ |
| 3653 | // Process result |
| 3654 | if ( s.complete ) |
| 3655 | s.complete(xhr, status); |
| 3656 | |
| 3657 | // The request was completed |
| 3658 | if ( s.global ) |
| 3659 | jQuery.event.trigger( "ajaxComplete", [xhr, s] ); |
| 3660 | |
| 3661 | // Handle the global AJAX counter |
| 3662 | if ( s.global && ! --jQuery.active ) |
| 3663 | jQuery.event.trigger( "ajaxStop" ); |
| 3664 | } |
| 3665 | |
| 3666 | // return XMLHttpRequest to allow aborting the request etc. |
| 3667 | return xhr; |
no outgoing calls
no test coverage detected