You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed issue where parallax functionality was broken in IE7 and IE8. This occurred when parallaxing elements were not given a left margin, which non-standards compliant browsers read as "auto" instead of "0px". This value would then be fed into parseInt. parseInt("0px") returns 0, whereas parseInt("auto") returns NaN.
0 commit comments