Differences From Artifact [e2f46957ed]:
- File gc_lang/fr/webext/content_scripts/panel_gc.js — part of check-in [091890c8f5] at 2025-11-20 15:33:50 on branch trunk — [fx][cli][build] thesaurus for webextension and CLI (user: olr, size: 61799) [annotate] [blame] [check-ins using]
To Artifact [25b413a070]:
- File gc_lang/fr/webext/content_scripts/panel_gc.js — part of check-in [aae1c5282e] at 2025-12-15 17:15:30 on branch trunk — [fx] intitulé pour le lancement du Thesaurus (user: olr, size: 61917) [annotate] [blame] [check-ins using]
| ︙ | |||
980 981 982 983 984 985 986 987 988 989 990 991 992 993 | 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 | + |
try {
if (sWord) {
this.xParent.getElementById('grammalecte_thes_title').textContent = sWord;
this.emptySynList();
if (lSyns.length == 0) {
this.xParent.getElementById('grammalecte_thes_word').style = "color: #BB4411;";
this.xParent.getElementById('grammalecte_thes_word_info').style = "display: block";
this.xParent.getElementById('grammalecte_thes_word_info').textContent = "Aucun synonyme trouvé";
} else {
this.xParent.getElementById('grammalecte_thes_word').style = "";
this.xParent.getElementById('grammalecte_thes_word_info').style = "display: none";
this.populateSynList(lSyns);
}
}
}
|
| ︙ |