Kill the testworker to save memory usage

pull/1/head
yflory 2019-08-20 13:55:37 +02:00
parent 06809fd3ba
commit 24ea640397
1 changed files with 2 additions and 0 deletions

View File

@ -1368,10 +1368,12 @@ define([
errEv.preventDefault();
errEv.stopPropagation();
noWorker = true;
worker.terminate();
w();
};
worker.onmessage = function (ev) {
if (ev.data === "OK") {
worker.terminate();
w();
}
};