Overview
| Comment: | [fx] init: remove console.log | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | fx | 
| Files: | files | file ages | folders | 
| SHA3-256: | 
c44ade58579f142a518833cfbc82a63d | 
| User & Date: | olr on 2019-10-06 10:50:44 | 
| Other Links: | manifest | tags | 
Context
| 
   2019-10-06 
 | ||
| 18:25 | [fr] nr: iel/iels, +ajustements check-in: 67cfc7da1d user: olr tags: trunk, fr | |
| 10:50 | [fx] init: remove console.log check-in: c44ade5857 user: olr tags: trunk, fx | |
| 
   2019-09-30 
 | ||
| 07:15 | [fr] faux positif check-in: 65265d55cd user: olr tags: trunk, fr, v1.5.0 | |
Changes
Modified gc_lang/fr/webext/content_scripts/init.js from [740cdf886f] to [a857d83fb7].
| ︙ | ︙ | |||
291 292 293 294 295 296 297  | 
        if (bChrome) {
            browser.storage.local.get("autorefresh_option", autoRefreshOption);
            return;
        }
        browser.storage.local.get("autorefresh_option").then(autoRefreshOption, showError);
    }
    else if (oSavedOptions.hasOwnProperty("autorefresh_option")) {
 | <  | 291 292 293 294 295 296 297 298 299 300 301 302 303 304  | 
        if (bChrome) {
            browser.storage.local.get("autorefresh_option", autoRefreshOption);
            return;
        }
        browser.storage.local.get("autorefresh_option").then(autoRefreshOption, showError);
    }
    else if (oSavedOptions.hasOwnProperty("autorefresh_option")) {
        oGrammalecte.bAutoRefresh = oSavedOptions["autorefresh_option"];
    }
}
autoRefreshOption();
 | 
| ︙ | ︙ |