HTMLAREA/MDL-17448

fix flaw in logic, yui event module shouldn't be loaded in IE. Credit go to Kris Thornley, thanks.
This commit is contained in:
dongsheng
2008-12-05 00:57:21 +00:00
parent 5cc23984d6
commit e753201ea8
+1 -1
View File
@@ -34,7 +34,7 @@ for (var i = 0; i < scripts.length; ++i) {
} else {
new_script.src = "../" + script.src;
}
if (navigator.appVersion.indexOf("MSIE") > 0 && script.src.indexOf("yui/event/event") == false) {
if (navigator.appVersion.indexOf("MSIE") == -1 || script.src.indexOf("yui/event/event") == -1) {
head.appendChild(new_script);
}
}