Overview
Comment: | [fx] rename xPort -> xGrammalectePort |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | webext2 |
Files: | files | file ages | folders |
SHA3-256: |
485e91923f0351bd19dae9e2b692b188 |
User & Date: | olr on 2017-08-31 04:20:32 |
Other Links: | branch diff | manifest | tags |
Context
2017-08-31
| ||
04:31 | [fx] console.log adjustments check-in: be93ad702e user: olr tags: fx, webext2 | |
04:20 | [fx] rename xPort -> xGrammalectePort check-in: 485e91923f user: olr tags: fx, webext2 | |
2017-08-30
| ||
15:55 | [fx] rename content scripts -> panel check-in: 6874758304 user: olr tags: fx, webext2 | |
Changes
Modified gc_lang/fr/webext/content_scripts/init.js from [473b1e492b] to [24d04c7299].
︙ | |||
84 85 86 87 88 89 90 | 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | - + - + | } } /* Connexion to the background */ |
︙ |
Modified gc_lang/fr/webext/content_scripts/panel.js from [d6d284c073] to [1ae3863a28].
︙ | |||
134 135 136 137 138 139 140 | 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | - + | } stopWaitIcon () { this.xWaitIcon.style.visibility = "hidden"; } openURL (sURL) { |
Modified gc_lang/fr/webext/content_scripts/panel_gc.js from [94e9ffb049] to [9f1f1ad499].
︙ | |||
103 104 105 106 107 108 109 | 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | - + | } recheckParagraph (iParaNum) { let sParagraphId = "grammalecte_paragraph" + iParaNum; let xParagraph = document.getElementById(sParagraphId); this.blockParagraph(xParagraph); let sText = this.purgeText(xParagraph.textContent); |
︙ |
Modified gc_lang/fr/webext/content_scripts/wrapper.js from [d4b91e9e99] to [d6f76a7bda].
︙ | |||
23 24 25 26 27 28 29 | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | - + - + - + - + | try { let xToolbar = createNode("div", {className: "grammalecte_wrapper_toolbar"}); let xConjButton = createNode("div", {className: "grammalecte_wrapper_button", textContent: "Conjuguer"}); xConjButton.onclick = () => { this.showConjButtons(); }; let xConjSection = createNode("div", {id: "grammalecte_wrapper_conj_section"+this.nWrapper, className: "grammalecte_wrapper_conj_section"}); let xConjButtonTab = createNode("div", {className: "grammalecte_wrapper_button2", textContent: ">Onglet"}); xConjButtonTab.onclick = function () { |
︙ |