59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
+
|
document.getElementById("lexicon_button").style.backgroundColor = "hsl(210, 80%, 90%)";
document.getElementById("add_word_button").style.backgroundColor = "hsl(210, 10%, 95%)";
} else {
this.hideElement("lexicon_page");
this.showElement("add_word_page");
document.getElementById("lexicon_button").style.backgroundColor = "hsl(210, 10%, 95%)";
document.getElementById("add_word_button").style.backgroundColor = "hsl(210, 80%, 90%)";
document.getElementById("lemma").focus();
}
},
showElement: function (sElemId) {
if (document.getElementById(sElemId)) {
document.getElementById(sElemId).style.display = "block";
} else {
|
466
467
468
469
470
471
472
473
474
475
476
477
478
479
|
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
|
+
|
}
},
addToLexicon: function () {
try {
oLexicon.addFlexions(this.lFlexion);
document.getElementById("lemma").value = "";
document.getElementById("lemma").focus();
oWidgets.showSection("section_vide");
oWidgets.hideElement("editor");
oWidgets.hideElement("actions");
oWidgets.clear();
oWidgets.showElement("save_button");
this.clear();
this.cMainTag = "";
|