I'm sorry. I have poor ability to write in English
What steps will reproduce the problem?
1. Unzip Attachment zip archive
2. Open standard_mode.html with IE6
3. Scroll bottom and click image.
What is the expected output? What do you see instead?
See in Attachment the png file.
This problem is occured with IE6 and html is wrote by standard mode.
What version of the product are you using? On what operating system?
1.3.0, 1.3.1 under, IE6, Windows XP.
Please provide any additional information below.
See in Attachment the zip archive file. (just examples of what I try to do)
This code fix the problem. Base code is nyroModal 1.3.1.
{{{
503,504c503,509
< currentSettings.marginScrollLeft =
document.documentElement.scrollLeft || document.body.scrollLeft;
< currentSettings.marginScrollTop =
document.documentElement.scrollTop || document.body.scrollTop;
---
> if (document.documentElement) {
> currentSettings.marginScrollLeft =
document.documentElement.scrollLeft;
> currentSettings.marginScrollTop =
document.documentElement.scrollTop;
> } else {
> currentSettings.marginScrollLeft =
document.body.scrollLeft;
> currentSettings.marginScrollTop =
document.body.scrollTop;
> }
1371c1376
< }
---
> }
}}}
|
ie6_with_standard_mode_bug.zip
188 KB
Download
|