* The ready event handler and self cleanup method
()
| 808 | * The ready event handler and self cleanup method |
| 809 | */ |
| 810 | function completed() { |
| 811 | document.removeEventListener( "DOMContentLoaded", completed, false ); |
| 812 | window.removeEventListener( "load", completed, false ); |
| 813 | jQuery.ready(); |
| 814 | } |
| 815 | |
| 816 | jQuery.ready.promise = function( obj ) { |
| 817 | if ( !readyList ) { |
nothing calls this directly
no outgoing calls
no test coverage detected