Differences From Artifact [b6aa40b101]:
- File gc_lang/fr/webext/gce_sharedworker.js — part of check-in [d2e1bf16aa] at 2017-08-11 09:27:38 on branch webext_sharedworker — [fx] Add the possibility to send reply to all or other (user: IllusionPerdu, size: 8865) [annotate] [blame] [check-ins using]
To Artifact [72e7a7fc85]:
- File gc_lang/fr/webext/gce_sharedworker.js — part of check-in [acd22b9ea0] at 2017-08-11 09:48:15 on branch webext_sharedworker — [fx] Simple test of previous commit (user: IllusionPerdu, size: 9155) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
| 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | 
                break;
            case "fullTests":
                fullTests();
                break;
            case "getListOfTokens":
                getListOfTokens(oParam.sText);
                break;
            default:
                console.log("Unknown command: " + showError(e.data[0]));
        }
    }
    //xPort.start();
}
 | > > > > > > > > | 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | 
                break;
            case "fullTests":
                fullTests();
                break;
            case "getListOfTokens":
                getListOfTokens(oParam.sText);
                break;
            case "other":
                console.log("Message to Other");
                toReply.Other("Message to Other");
                break;
            case "all":
                console.log("Message to All");
                toReply.All("Message to All");
                break;
            default:
                console.log("Unknown command: " + showError(e.data[0]));
        }
    }
    //xPort.start();
}
 | 
| ︙ | ︙ |