Wilto / Dynamic-Carousel

A carousel plugin built for responsive layouts. There are many like it, but this one is mine.
matmarquis.com/carousel/
472 stars 112 forks source link

Error in IE9.0.12 #83

Open cloud216 opened 11 years ago

cloud216 commented 11 years ago

Getting an error that match value is null or can't be found. added this to get rid of it:

var oPercent; if ($(this).attr('style') != null) { oPercent = $(this).attr('style').match(/margin-left:(.*[0-9])/i) && parseInt(RegExp.$1);

    }
    return oPercent;

Any issues with this above?