Grammalecte  Check-in [4dd50863c2]

Overview
Comment:[fx] Menu buttons: option true 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: 4dd50863c2bb5202e91a0bfffb4e1b8251eb33bee1c7f050b7425f7d0d856e02
User & Date: olr on 2017-10-28 12:04:46
Original Comment: [fx] Menu buttons: option false by default for editable nodes
Other Links: manifest | tags
Context
2017-10-28
13:17
[build][fr] data: locutions check-in: e356116b6e user: olr tags: trunk, fr, build
12:04
[fx] Menu buttons: option true by default for editable nodes check-in: 4dd50863c2 user: olr tags: trunk, fx
11:56
[fx][bug] ibdawg: suggestion mechanism > fix calculation between words in JS check-in: 5ac4660b30 user: olr tags: trunk, fx
Changes

Modified gc_lang/fr/webext/background.js from [cf0aedc320] to [61c0259fd3].

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({







|







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: true
        }});
    }
}

function initGrammarChecker (dSavedOptions) {
    let dOptions = (dSavedOptions.hasOwnProperty("gc_options")) ? dSavedOptions.gc_options : null;
    xGCEWorker.postMessage({