Site. Fixed an error in javascript when the page does not have a tag with the .documentation-version__button class.

This commit is contained in:
2024-07-26 22:06:21 +05:00
parent b33362a235
commit 707762d29b

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');
}
});
}