implement wiki editing

This commit is contained in:
Mario
2017-09-15 22:17:18 +02:00
parent 663802e699
commit 373651c3db
5 changed files with 90 additions and 40 deletions

View File

@@ -262,6 +262,14 @@ function openClose(theID) {
}
}
function openCloseTR(theID) {
if(document.getElementById(theID).style.display == "table-row") {
document.getElementById(theID).style.display = "none";
} else {
document.getElementById(theID).style.display = "table-row";
}
}
function closeOpen(theID) {
if(document.getElementById(theID).style.display == "none") {
document.getElementById(theID).style.display = "block";