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
A quick way to fix this yourself is to include the following snippet:
if(!Array.prototype.filter){Array.prototype.filter=function(fun/*, thisp */){"use strict";if(this===void0||this===null)thrownewTypeError();vart=Object(this);varlen=t.length>>>0;if(typeoffun!=="function")thrownewTypeError();varres=[];varthisp=arguments[1];for(vari=0;i<len;i++){if(iint){varval=t[i];// in case fun mutates thisif(fun.call(thisp,val,i,t))res.push(val);}}returnres;};}
The text was updated successfully, but these errors were encountered:
I cannot seem to reproduce the error you are having with native IE 8.0.7601.17514 on a Windows 7 Ultimate 64 SP1 box. Just checked the demo and everything works 100% spot on here. Not checked on lower or higher versions IE but 8.0.7601.17514 works fine from looking at the demo and resizing the viewport.
This plugin seems to break on IE 8 and older because Array.filter is not supported and will give you an error.
https://github.com/saabi/vminpoly/blob/master/tokenizer.js#L501
A quick way to fix this yourself is to include the following snippet:
The text was updated successfully, but these errors were encountered: