Quote:
Originally Posted by BBR-APBT
It isn't no slower then firefox or Opera. It must be the users connection.
|
This is not the user's connection. It is a confirmed bug with lytebox and IE8. The fix is to either disable animations for all browsers in lytebox.js via:
Code:
this.doAnimations = false;
or, to apply this.doAnimations on a case-by-case basis depending on the browser using the following function:
Code:
if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {
this.doAnimations = false;
}
else {
this.doAnimations = true;
}
(with the above function, animations are disabled for all IE browsers -- not just IE8. IE7 and lower can also have issues, although with IE7 it's not as bad)