Overview
Comment: | [fx] Menu buttons: option false by default for editable nodes |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fx |
Files: | files | file ages | folders |
SHA3-256: |
35238657b4a3ca860f66fd4af8f6320a |
User & Date: | olr on 2017-10-28 11:15:15 |
Original Comment: | [fx] Menu buttons: option false by default |
Other Links: | manifest | tags |
Context
2017-10-28
| ||
11:56 | [fx][bug] ibdawg: suggestion mechanism > fix calculation between words in JS check-in: 5ac4660b30 user: olr tags: trunk, fx | |
11:15 | [fx] Menu buttons: option false by default for editable nodes check-in: 35238657b4 user: olr tags: trunk, fx | |
10:29 | [fx] v0.6.0.5 check-in: d653f82c9f user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/webext/background.js from [61c0259fd3] to [cf0aedc320].
︙ | ︙ | |||
72 73 74 75 76 77 78 | } }; function initUIOptions (dSavedOptions) { if (!dSavedOptions.hasOwnProperty("ui_options")) { browser.storage.local.set({"ui_options": { textarea: true, | | | 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | } }; function initUIOptions (dSavedOptions) { if (!dSavedOptions.hasOwnProperty("ui_options")) { browser.storage.local.set({"ui_options": { textarea: true, editablenode: false }}); } } function initGrammarChecker (dSavedOptions) { let dOptions = (dSavedOptions.hasOwnProperty("gc_options")) ? dSavedOptions.gc_options : null; xGCEWorker.postMessage({ |
︙ | ︙ |