Bug #18199
closedJS Errors with IE6 and new backend
0%
Description
with this code
// workaround since IE6 cannot deal with relative height for scrolling elements
if (/MSIE 6/.test(navigator.userAgent)) {
Event.observe(window, "resize", resizeDocBody, false);
Event.observe(window, "load", resizeDocBody, false);
}
i get "Event is undefined" in IE6 (IE7 is fine with that)
(issue imported from #M7506)
Files
Updated by Patrick Broens almost 17 years ago
The module template loader didn't care about Prototype, which it should. With new patch when module template is set, Prototype is also loaded. Only happened in certain cases when Prototype was not available, for instance when no clickmenu was available
Updated by Steffen Kamper almost 17 years ago
I can reproduce it in IE6 all the time. After login i go to web>page and before content is loaded error comes up.
Updated by Steffen Kamper almost 17 years ago
thanks for the patch which solves the problem!