Overview
| Comment: | [fx] console.log adjustments |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | fx | webext2 |
| Files: | files | file ages | folders |
| SHA3-256: |
25bd31d7edf559e3a0136f64dd060955 |
| User & Date: | olr on 2017-08-31 04:32:34 |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-08-31
| ||
| 06:06 | [build] helpers: use shutil and os module only check-in: 3834076ae7 user: olr tags: build, webext2 | |
| 04:32 | [fx] console.log adjustments check-in: 25bd31d7ed user: olr tags: fx, webext2 | |
| 04:31 | [fx] console.log adjustments check-in: be93ad702e user: olr tags: fx, webext2 | |
Changes
Modified gc_lang/fr/webext/gce_worker.js from [55db11ec7e] to [285ccf74ab].
| ︙ | ︙ | |||
119 120 121 122 123 124 125 |
case "fullTests":
fullTests(dInfo);
break;
case "getListOfTokens":
getListOfTokens(dParam.sText, dInfo);
break;
default:
| | | 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
case "fullTests":
fullTests(dInfo);
break;
case "getListOfTokens":
getListOfTokens(dParam.sText, dInfo);
break;
default:
console.log("[Worker] Unknown command: " + sCommand);
showData(e.data);
}
}
let bInitDone = false;
|
| ︙ | ︙ |