Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | [fx] gc panel: smaller message |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fx |
Files: | files | file ages | folders |
SHA3-256: | f3cbae47476dc054eaadac863acc56be |
User & Date: | olr 2019-05-11 09:24:00 |
Context
2019-05-11
| ||
09:33 | [fx] gc panel: message panel adjustments check-in: a5675dcdb7 user: olr tags: fx, trunk | |
09:24 | [fx] gc panel: smaller message check-in: f3cbae4747 user: olr tags: fx, trunk | |
07:17 | [fx] gc panel: fix CSS nightmare check-in: a54db46fa5 user: olr tags: fx, trunk | |
Changes
Changes to gc_lang/fr/webext/content_scripts/panel_gc.js.
885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 |
} this.xNode.disabled = true; this.loadText((this.bTextArea) ? this.xNode.value : this.xNode.innerText); } setText (sText) { this.clear(); oGrammalecte.oGCPanel.showMessage("Le texte analysé n’appartient pas à un champ textuel défini. Les modifications ne seront pas répercutées sur la zone d’où le texte a été extrait. L’ensemble du texte corrigé est récupérable avec le bouton 📋."); this.loadText(sText); } clear () { if (this.xNode !== null) { this.xNode.disabled = false; this.bTextArea = false; |
| |
885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 |
}
this.xNode.disabled = true;
this.loadText((this.bTextArea) ? this.xNode.value : this.xNode.innerText);
}
setText (sText) {
this.clear();
oGrammalecte.oGCPanel.showMessage("Le texte analysé n’appartient à aucun champ textuel défini. Les changements ne seront pas répercutés sur la zone d’où le texte a été extrait.");
this.loadText(sText);
}
clear () {
if (this.xNode !== null) {
this.xNode.disabled = false;
this.bTextArea = false;
|