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
Not really an issue, just a suggestion. I was using the carousel and noticed it wasn't working in IE8, seems to be due to an issue with .indexOf. I found adding this to the top solved my issue:
Not really an issue, just a suggestion. I was using the carousel and noticed it wasn't working in IE8, seems to be due to an issue with .indexOf. I found adding this to the top solved my issue:
if (!Array.prototype.indexOf) { Array.prototype.indexOf = function(val) { return jQuery.inArray(val, this); }; }
The text was updated successfully, but these errors were encountered: