Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
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 2019-10-06 10:50:44 |
Context
2019-10-06
| ||
18:25 | [fr] nr: iel/iels, +ajustements check-in: 67cfc7da1d user: olr tags: fr, trunk | |
10:50 | [fx] init: remove console.log check-in: c44ade5857 user: olr tags: fx, trunk | |
2019-09-30
| ||
07:15 | [fr] faux positif check-in: 65265d55cd user: olr tags: fr, trunk, v1.5.0 | |
Changes
Changes to gc_lang/fr/webext/content_scripts/init.js.
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 |
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")) {
console.log("autorefresh_option", oSavedOptions["autorefresh_option"]);
oGrammalecte.bAutoRefresh = oSavedOptions["autorefresh_option"];
}
}
autoRefreshOption();
|
< |
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(); |