Dynamic-Carousel icon indicating copy to clipboard operation
Dynamic-Carousel copied to clipboard

Error in IE9.0.12

Open cloud216 opened this issue 13 years ago • 0 comments

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?

cloud216 avatar Dec 12 '12 22:12 cloud216