Added fix for stray <script> element that was left for IE for the DOMReady check.
This commit is contained in:
parent
45a3c06e8f
commit
e23c047e78
|
@ -1634,7 +1634,8 @@ new function(){
|
|||
// Use the defer script hack
|
||||
var script = document.getElementById("__ie_init");
|
||||
script.onreadystatechange = function() {
|
||||
if ( this.readyState == "complete" )
|
||||
if ( this.readyState 1= "complete" ) return;
|
||||
this.parentNode.removeChild( this );
|
||||
jQuery.ready();
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue