381
382
383
384
385
386
387
388
389
390
391
392
393
394
|
this.bConnected = false;
this.restart();
}.bind(this));
this.xConnect.onMessage.addListener(function (oMessage) {
let { sActionDone, result, oInfo, bEnd, bError } = oMessage;
switch (sActionDone) {
case "init":
this.bConnected = true;
oGrammalecte.sExtensionUrl = oMessage.sUrl;
oGrammalecte.listen();
oGrammalecte.createButton();
break;
case "ping":
console.log("[Grammalecte] Connection to background done.");
|
>
|
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
|
this.bConnected = false;
this.restart();
}.bind(this));
this.xConnect.onMessage.addListener(function (oMessage) {
let { sActionDone, result, oInfo, bEnd, bError } = oMessage;
switch (sActionDone) {
case "init":
//console.log("[Grammalecte] content-script: init");
this.bConnected = true;
oGrammalecte.sExtensionUrl = oMessage.sUrl;
oGrammalecte.listen();
oGrammalecte.createButton();
break;
case "ping":
console.log("[Grammalecte] Connection to background done.");
|