1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Background
"use strict";
let xGCEWorker = new Worker("gce_worker.js");
xGCEWorker.onmessage = function (e) {
console.log("Received from Worker:");
switch (e.data[0]) {
case "grammar_errors":
console.log("GRAMMAR ERRORS");
console.log(e.data[1].aGrammErr);
break;
case "spelling_and_grammar_errors":
console.log("SPELLING AND GRAMMAR ERRORS");
|
<
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Background
"use strict";
let xGCEWorker = new Worker("gce_worker.js");
xGCEWorker.onmessage = function (e) {
switch (e.data[0]) {
case "grammar_errors":
console.log("GRAMMAR ERRORS");
console.log(e.data[1].aGrammErr);
break;
case "spelling_and_grammar_errors":
console.log("SPELLING AND GRAMMAR ERRORS");
|