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
{{ message }}
This repository has been archived by the owner on Dec 23, 2019. It is now read-only.
The addEventListener method causes an error in IE8. I didn't care about having animations working in IE8 so I wrapped lines 34 & 35 in an if statement. Site now loads properly in IE8 and animations are working in modern browsers.
if (document.addEventListener){
document.addEventListener("touchmove", ScrollStart, false);
document.addEventListener("scroll", Scroll, false);
}
The text was updated successfully, but these errors were encountered:
The addEventListener method causes an error in IE8. I didn't care about having animations working in IE8 so I wrapped lines 34 & 35 in an if statement. Site now loads properly in IE8 and animations are working in modern browsers.
if (document.addEventListener){
document.addEventListener("touchmove", ScrollStart, false);
document.addEventListener("scroll", Scroll, false);
}
The text was updated successfully, but these errors were encountered: