What steps will reproduce the problem?
1. Create a fixed width, centrally aligned webpage and launch modal in IE6,
and launch a modal
What is the expected output? What do you see instead?
The background remains static and the modal pops up
What version of the product are you using? On what operating system?
The background shifts to the right and the modal pops up
Please provide any additional information below.
The issue is caused by these lines of code
} else if (isIE6) {
body.css({
height: (body.height()+200)+'px', //130%
width: (body.width()+200)+'px', //130%
position: 'static',
overflow: 'hidden'
});
}
I've removed the +200 and the issue has been resolved, however I'd like to
clear up why the hack was required in the first place, and whether or not
it is still necessary.
Other than that, thanks for an awesome plugin.