()
| 935 | |
| 936 | // The DOM ready check for Internet Explorer |
| 937 | function doScrollCheck() { |
| 938 | if ( jQuery.isReady ) { |
| 939 | return; |
| 940 | } |
| 941 | |
| 942 | try { |
| 943 | // If IE is used, use the trick by Diego Perini |
| 944 | // http://javascript.nwbox.com/IEContentLoaded/ |
| 945 | document.documentElement.doScroll("left"); |
| 946 | } catch(e) { |
| 947 | setTimeout( doScrollCheck, 1 ); |
| 948 | return; |
| 949 | } |
| 950 | |
| 951 | // and execute any waiting functions |
| 952 | jQuery.ready(); |
| 953 | } |
| 954 | |
| 955 | return jQuery; |
| 956 |
no outgoing calls
no test coverage detected
searching dependent graphs…