Fixed the attribution for the DOM Ready fix - the previously used changes weren't significant.
This commit is contained in:
parent
ee2efbe1e3
commit
1344a7fd50
|
@ -433,10 +433,10 @@ function bindReady(){
|
||||||
// Continually check to see if the document is ready
|
// Continually check to see if the document is ready
|
||||||
(function timer() {
|
(function timer() {
|
||||||
try {
|
try {
|
||||||
// If IE is used, use the excellent hack by Hedger Wang and Andrea Giammarchi
|
// If IE is used, use the trick by Diego Perini
|
||||||
// http://www.3site.eu/jstests/onContent/DOMReadyAnddoScroll.php
|
// http://javascript.nwbox.com/IEContentLoaded/
|
||||||
if ( jQuery.browser.msie || document.readyState != "loaded" && document.readyState != "complete" )
|
if ( jQuery.browser.msie || document.readyState != "loaded" && document.readyState != "complete" )
|
||||||
document.firstChild.doScroll("left");
|
document.documentElement.doScroll("left");
|
||||||
|
|
||||||
// and execute any waiting functions
|
// and execute any waiting functions
|
||||||
jQuery.ready();
|
jQuery.ready();
|
||||||
|
|
Loading…
Reference in a new issue