Overview
Comment: | [fx] main panel: update doc |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fx |
Files: | files | file ages | folders |
SHA3-256: |
053f1c7d2242d3109c04189c338c955d |
User & Date: | olr on 2019-05-04 18:11:48 |
Other Links: | manifest | tags |
Context
2019-05-05
| ||
09:14 | [fr] ajustement check-in: 6807a5d380 user: olr tags: trunk, fr | |
2019-05-04
| ||
18:11 | [fx] main panel: update doc check-in: 053f1c7d22 user: olr tags: trunk, fx | |
16:47 | [fx] text formatter: close even when no change check-in: 43be289176 user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel_tf.js from [6925f1b189] to [6794ec1e36].
︙ | ︙ | |||
21 22 23 24 25 26 27 28 29 30 31 | this.TextFormatter = new TextFormatter(); this.formatText = this.TextFormatter.formatTextRuleCount; this.removeHyphenAtEndOfParagraphs = this.TextFormatter.removeHyphenAtEndOfParagraphsCount; this.mergeContiguousParagraphs = this.TextFormatter.mergeContiguousParagraphsCount; this.getParagraph = this.TextFormatter.getParagraph; this.xCloseButton.onclick = () => { if (this.bTextChanged) { this.xGCPanel.recheckAll(); this.bTextChanged = false; } | > < | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | this.TextFormatter = new TextFormatter(); this.formatText = this.TextFormatter.formatTextRuleCount; this.removeHyphenAtEndOfParagraphs = this.TextFormatter.removeHyphenAtEndOfParagraphsCount; this.mergeContiguousParagraphs = this.TextFormatter.mergeContiguousParagraphsCount; this.getParagraph = this.TextFormatter.getParagraph; this.xCloseButton.onclick = () => { this.hide(); if (this.bTextChanged) { this.xGCPanel.recheckAll(); this.bTextChanged = false; } }; } _createTextFormatter () { let xTFNode = document.createElement("div"); try { // Options |
︙ | ︙ |
Deleted gc_lang/fr/webext/img/menu_button2.png version [01edfbeef0].
cannot compute difference between binary files
Modified gc_lang/fr/webext/panel/main.html from [4015290a3b] to [0ac99d12b8].
︙ | ︙ | |||
71 72 73 74 75 76 77 | <section id="ui_options_page" class="page"> <h1>OPTIONS D’INTERFACE</h1> <h2>Menu contextuel</h2> <p>Les commandes permettant de lancer Grammalecte sont trouvables via le menu contextuel.</p> <p class="right"><img src="../img/contextmenu.png" title="menu contextuel sur sélection" /></p> <h2>Boutons d’accès</h2> | | | < | 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | <section id="ui_options_page" class="page"> <h1>OPTIONS D’INTERFACE</h1> <h2>Menu contextuel</h2> <p>Les commandes permettant de lancer Grammalecte sont trouvables via le menu contextuel.</p> <p class="right"><img src="../img/contextmenu.png" title="menu contextuel sur sélection" /></p> <h2>Boutons d’accès</h2> <p>Grammalecte peut aussi afficher un bouton d’accès au correcteur en bas à gauche des zones de texte.</p> <p class="right"><img src="../img/menu_button1.png" title="bouton d’accès au correcteur" /></p> <p>Vous pouvez activer ou désactiver l’affichage de ces boutons sur les zones de texte. Il existe deux types de zones de texte.</p> <div class="option_section" id="ui_option_textarea_box"> <p><input type="checkbox" id="ui_option_textarea" /> <label for="ui_option_textarea">“Textareas”</label></p> <p class="option_description">Ces zones de texte sont les champs de formulaire usuels pour saisir du texte. Ils ne permettent que la saisie de texte brut, sans fioritures.</p> </div> <div class="option_section" id="ui_option_editablenode_box"> <p><input type="checkbox" id="ui_option_editablenode" /> <label for="ui_option_editablenode">“Nodes” éditables</label></p> |
︙ | ︙ |