Версия 0.3.0 #3

Merged
kor-elf merged 11 commits from develop into main 2024-07-27 02:09:14 +05:00
Showing only changes of commit 707762d29b - Show all commits

View File

@ -1,4 +1,5 @@
let blockDocumentationVersion = document.querySelector('#documentation-version');
if (blockDocumentationVersion) {
blockDocumentationVersion.querySelector('.documentation-version__button').addEventListener('click', (e) => {
if (blockDocumentationVersion.classList.contains('active')) {
blockDocumentationVersion.classList.remove('active');
@ -6,3 +7,4 @@ blockDocumentationVersion.querySelector('.documentation-version__button').addEve
blockDocumentationVersion.classList.add('active');
}
});
}