IE error with arrow function
-
Please, change this:
if (myClasses.some(v => skipClasses.indexOf(v) >= 0)) {
to this:
if (myClasses.some(function (v) { return skipClasses.indexOf(v) >= 0; })) {
in image_lazy_load.js.
IE does’n support arrow function. Thanks.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘IE error with arrow function’ is closed to new replies.