Overview
Comment: | [fx] use strict and useless var |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | webext2 |
Files: | files | file ages | folders |
SHA3-256: |
0289647400aadfc478fdaf0e6101158d |
User & Date: | olr on 2017-08-07 13:15:23 |
Other Links: | branch diff | manifest | tags |
Context
2017-08-07
| ||
13:31 | [fx] some cleaning check-in: 04f319695e user: olr tags: fx, webext2 | |
13:15 | [fx] use strict and useless var check-in: 0289647400 user: olr tags: fx, webext2 | |
13:13 | [fx] test panel (done) check-in: 1debcdc72b user: olr tags: fx, webext2 | |
Changes
Modified gc_lang/fr/webext/background.js from [b24f208146] to [8e13e697ca].
1 2 3 4 | // Background "use strict"; | < < < < | 1 2 3 4 5 6 7 8 9 10 11 | // Background "use strict"; /* Worker (separate thread to avoid freezing Firefox) */ let xGCEWorker = new Worker("gce_worker.js"); xGCEWorker.onmessage = function (e) { |
︙ | ︙ |
Modified gc_lang/fr/webext/panel/main.js from [49ea22ef41] to [9125bf11f9].
1 2 3 4 5 6 7 8 | // Main panel function showError (e) { console.error(e.fileName + "\n" + e.name + "\nline: " + e.lineNumber + "\n" + e.message); } function showPage (sPageName) { try { | > > > | 1 2 3 4 5 6 7 8 9 10 11 | // Main panel "use strict"; function showError (e) { console.error(e.fileName + "\n" + e.name + "\nline: " + e.lineNumber + "\n" + e.message); } function showPage (sPageName) { try { |
︙ | ︙ |