Overview
| Comment: | [fx] use dataset | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | fx | webext2 | 
| Files: | files | file ages | folders | 
| SHA3-256: | 
3472c830942235c09b84083cfea033d0 | 
| User & Date: | olr on 2017-08-28 15:57:04 | 
| Other Links: | branch diff | manifest | tags | 
Context
| 
   2017-08-29 
 | ||
| 06:18 | [fx] copy text to clipboard check-in: 49c4a65f72 user: olr tags: fx, webext2 | |
| 
   2017-08-28 
 | ||
| 15:57 | [fx] use dataset check-in: 3472c83094 user: olr tags: fx, webext2 | |
| 15:35 | [fx] wrapper CSS update check-in: 4414e3913f user: olr tags: fx, webext2 | |
Changes
Modified gc_lang/fr/webext/content_scripts/content_modifier.js from [08d6a77f2d] to [fd4aa2d823].
| ︙ | |||
123 124 125 126 127 128 129 130 131 132 133 134 135 136  | 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137  | +  | 
            this.oLxgPanel.insertIntoPage();
        }
    },
    createGCPanel: function () {
        if (this.oGCPanel === null) {
            this.oGCPanel = new GrammalecteGrammarChecker("grammalecte_gc_panel", "Grammalecte", 500, 700);
            //this.oGCPanel.logInnerHTML();
            this.oGCPanel.insertIntoPage();
        }
    }
}
/*
 | 
| ︙ | 
Modified gc_lang/fr/webext/content_scripts/gc_content.js from [791ec98861] to [6462f47783].
1 2 3 4 5 6 7 8 9 10 11 12 13  | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21  | - +  | 
// JavaScript
"use strict";
function onGrammalecteGCPanelClick (xEvent) {
    try {
        let xElem = xEvent.target;
        if (xElem.id) {
            if (xElem.id.startsWith("grammalecte_sugg")) {
                oGrammalecte.oGCPanel.applySuggestion(xElem.id);
            } else if (xElem.id === "grammalecte_tooltip_ignore") {
                oGrammalecte.oGCPanel.ignoreError(xElem.id);
            } else if (xElem.id.startsWith("grammalecte_check")) {
 | 
| ︙ | |||
77 78 79 80 81 82 83  | 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91  | - +  | 
    addParagraphResult (oResult) {
        try {
            if (oResult && oResult.sParagraph.trim() !== "" && (oResult.aGrammErr.length > 0 || oResult.aSpellErr.length > 0)) {
                let xNodeDiv = createNode("div", {className: "grammalecte_paragraph_block"});
                // actions
                let xActionsBar = createNode("div", {className: "grammalecte_paragraph_actions"});
 | 
| ︙ |