Dantes (обсуждение | вклад) Нет описания правки |
Dantes (обсуждение | вклад) Нет описания правки |
||
| Строка 1: | Строка 1: | ||
mw. | // Ждём загрузки DOM | ||
mw.hook('wikipage.content').add(function() { | |||
var buttons = document.querySelectorAll('.collapsible-button'); | |||
buttons.forEach(function(button) { | |||
button.addEventListener('click', function() { | |||
var content = this.nextElementSibling; | |||
var arrow = this.querySelector('.arrow'); | |||
// Переключаем видимость | |||
if (content.style.display === 'none') { | |||
content.style.display = 'block'; | |||
arrow.textContent = '▼'; | |||
} else { | |||
content.style.display = 'none'; | |||
arrow.textContent = '▶'; | |||
} | |||
} | |||
}); | }); | ||
}); | }); | ||
}); | }); | ||
Версия от 16:47, 8 мая 2025
// Ждём загрузки DOM
mw.hook('wikipage.content').add(function() {
var buttons = document.querySelectorAll('.collapsible-button');
buttons.forEach(function(button) {
button.addEventListener('click', function() {
var content = this.nextElementSibling;
var arrow = this.querySelector('.arrow');
// Переключаем видимость
if (content.style.display === 'none') {
content.style.display = 'block';
arrow.textContent = '▼';
} else {
content.style.display = 'none';
arrow.textContent = '▶';
}
});
});
});