Skip to content

Commit

Permalink
Go into interactive mode immediately when IE event handling is detected
Browse files Browse the repository at this point in the history
  • Loading branch information
kriszyp committed Sep 17, 2010
1 parent 01a3645 commit a9eb9fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/browsertests/scriptloadinteractive/index.html
Expand Up @@ -72,7 +72,6 @@
} else {
//Probably IE.
node.detachEvent("onreadystatechange", onTestScriptLoad);
useInteractive = true;
}
}
}
Expand All @@ -92,6 +91,7 @@
node.addEventListener("load", onTestScriptLoad, false);
} else {
//Probably IE.
useInteractive = true;
node.attachEvent("onreadystatechange", onTestScriptLoad);
}

Expand Down

0 comments on commit a9eb9fc

Please sign in to comment.