Overview
Comment: | [fx] comment console.log in text formatter |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | webext2 |
Files: | files | file ages | folders |
SHA3-256: |
2bb79b3718302ea191c4d1c22dcc2614 |
User & Date: | olr on 2017-08-30 15:35:59 |
Other Links: | branch diff | manifest | tags |
Context
2017-08-30
| ||
15:55 | [fx] rename content scripts -> panel check-in: 6874758304 user: olr tags: fx, webext2 | |
15:35 | [fx] comment console.log in text formatter check-in: 2bb79b3718 user: olr tags: fx, webext2 | |
14:27 | [fx] include data for locales (not used ATM) to remove warning in the console check-in: d714a91c2d user: olr tags: fx, webext2 | |
Changes
Modified gc_lang/fr/webext/content_scripts/tf_content.js from [236732302d] to [c6dd5827fb].
︙ | ︙ | |||
223 224 225 226 227 228 229 | } } saveOptions () { let oOptions = {}; for (let xNode of document.getElementsByClassName("option")) { oOptions[xNode.id] = xNode.checked; | | | 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 | } } saveOptions () { let oOptions = {}; for (let xNode of document.getElementsByClassName("option")) { oOptions[xNode.id] = xNode.checked; //console.log(xNode.id + ": " + xNode.checked); } browser.storage.local.set({"tf_options": oOptions}); } apply () { try { const t0 = Date.now(); |
︙ | ︙ |