Open GoogleCodeExporter opened 8 years ago
What worked for us is within the domReady function inside the if(ua.ie) block
...
replace
try{
document.documentElement.doScroll("left");
}
catch(e){
setTimeout(arguments.callee,50);
return;
}
with
if( ! document.readyState || document.readyState !== "complete" ) {
setTimeout(arguments.callee,50);
return;
}
Original comment by er...@mindjumpers.com
on 31 Mar 2014 at 8:13
Back from the dead... There is a new version of the script. It has some CSS
parsing and processing improvements. If you're still using it, or would like to
try again, could you confirm that this issue is solved or not?
Original comment by wou...@dynora.nl
on 4 Apr 2014 at 11:46
Original issue reported on code.google.com by
pascal.h...@gmail.com
on 13 Jul 2012 at 5:03