* The ready event handler and self cleanup method
()
| 3376 | * The ready event handler and self cleanup method |
| 3377 | */ |
| 3378 | function completed() { |
| 3379 | document.removeEventListener( "DOMContentLoaded", completed, false ); |
| 3380 | window.removeEventListener( "load", completed, false ); |
| 3381 | jQuery.ready(); |
| 3382 | } |
| 3383 | |
| 3384 | jQuery.ready.promise = function( obj ) { |
| 3385 | if ( !readyList ) { |
nothing calls this directly
no outgoing calls
no test coverage detected