Parallel.js have problems with blob in IE

I need to execute functions in "parallel", and I use parallel.js:

var p = new Parallel(items);

var fn1 = function (item) {
    doSomething(item);
};

p.map(fn1).then(function () {
    otherFunction();
});

But IE shows the following error:

[Q] Unhandled rejection reasons (should be empty): (no stack) SecurityError

HTML7007: One or more blob URLs were revoked by closing the blob 
for which they were created. These URLs will no longer resolve as 
the data backing the URL has been freed.

How to fix this error?

I looked at the parallel.js page in IE and all the examples work fine.

I use Durandal, Breeze and Knockout.

Firefox displays the following error:

[Q] Unhandled rejection reasons (should be empty): 
["(no stack) [Exception..... location: "<unknown>"]"]

and in Google Chrome there is no error, but parallel.js does not work.

0
source share
1 answer

If you still have problems with this, to make Parallel.js work in Internet Explorer, you must enable the evalPath option as indicated on the website:

evalPath (): eval.js. node , ( - IE 10).

IE 11.

, :

var p = new Parallel(items, {evalPath: [PATH_TO_EVAL_JS]});

[PATH_TO_EVAL_JS] eval.js.

+1

All Articles