980
981
982
983
984
985
986
987
988
989
990
991
992
993
|
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";
} else {
this.xParent.getElementById('grammalecte_thes_word').style = "";
this.xParent.getElementById('grammalecte_thes_word_info').style = "display: none";
this.populateSynList(lSyns);
}
}
}
|
>
|
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);
}
}
}
|