Closed damianroszyk closed 8 years ago
https://github.com/igorlino/elevatezoom-plus/blob/master/src/jquery.ez-plus.js#L1119
reference: http://caniuse.com/#feat=es6-number maybe a polyfill for this issue ?
adding this polyfill fixes the issue
Number.isInteger = Number.isInteger || function(value) { return typeof value === "number" && isFinite(value) && Math.floor(value) === value; };
https://github.com/igorlino/elevatezoom-plus/blob/master/src/jquery.ez-plus.js#L1119
reference: http://caniuse.com/#feat=es6-number maybe a polyfill for this issue ?