Differences From Artifact [405aefbae4]:
- File gc_lang/fr/webext/panel/main.js — part of check-in [3ac8707213] at 2017-09-12 08:41:01 on branch trunk — [fx] WebExt: mode debug for simple test (user: olr, size: 3999) [annotate] [blame] [check-ins using] [more...]
 
To Artifact [f370e36795]:
- File gc_lang/fr/webext/panel/main.js — part of check-in [3af265e2d8] at 2017-09-26 08:52:38 on branch trunk — [fx] WebExt: adaptation to Chrome (browser=chrome) (user: olr, size: 4155) [annotate] [blame] [check-ins using]
 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15  | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21  | + + + + + +  | 
// Main panel
"use strict";
function showError (e) {
    console.error(e.fileName + "\n" + e.name + "\nline: " + e.lineNumber + "\n" + e.message);
}
// Chrome don’t follow the W3C specification:
// https://browserext.github.io/browserext/
if (typeof(chrome) === "object") {
    var browser = chrome;
}
/*
    Events
*/
window.addEventListener(
    "click",
 | 
| ︙ |