Добавил:
У меня есть канал с приколами:rnt.me/urmipies_garbagernПодпишитесь пж-пж!!!! Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Скачиваний:
9
Добавлен:
22.10.2025
Размер:
466 б
Скачать
function togglePost(postId) {
    const postContent = document.getElementById('postContent-' + postId);
    const button = document.querySelector('[onclick="togglePost(' + postId + ')"]');

    if (postContent.classList.contains('collapsed')) {
        postContent.classList.remove('collapsed');
        button.textContent = 'Свернуть';
    } else {
        postContent.classList.add('collapsed');
        button.textContent = 'Развернуть';
    }
}
Соседние файлы в папке static