Quote:
Originally Posted by compuminus
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)
|
Thanks for that information as I did not see that. I have not had one person say anything about that.
As a side note it makes it faster for all browsers. I think on my next releases this will be shipped with animations off.