15 lines
536 B
JavaScript
15 lines
536 B
JavaScript
document.addEventListener("DOMContentLoaded", function () {
|
|
showTable('build', buildings);
|
|
let tableIsDisplayed = true;
|
|
tableVisibilityButton.addEventListener("click", () => {
|
|
if (tableIsDisplayed) {
|
|
clearTable('build')
|
|
tableVisibilityButton.innerHTML = "Показать таблицу";
|
|
} else {
|
|
showTable('build', buildings);
|
|
tableVisibilityButton.innerHTML = "Скрыть таблицу";
|
|
}
|
|
tableIsDisplayed = !tableIsDisplayed;
|
|
})
|
|
|
|
}) |