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:
parent
b33362a235
commit
707762d29b
@ -1,4 +1,5 @@
|
|||||||
let blockDocumentationVersion = document.querySelector('#documentation-version');
|
let blockDocumentationVersion = document.querySelector('#documentation-version');
|
||||||
|
if (blockDocumentationVersion) {
|
||||||
blockDocumentationVersion.querySelector('.documentation-version__button').addEventListener('click', (e) => {
|
blockDocumentationVersion.querySelector('.documentation-version__button').addEventListener('click', (e) => {
|
||||||
if (blockDocumentationVersion.classList.contains('active')) {
|
if (blockDocumentationVersion.classList.contains('active')) {
|
||||||
blockDocumentationVersion.classList.remove('active');
|
blockDocumentationVersion.classList.remove('active');
|
||||||
@ -6,3 +7,4 @@ blockDocumentationVersion.querySelector('.documentation-version__button').addEve
|
|||||||
blockDocumentationVersion.classList.add('active');
|
blockDocumentationVersion.classList.add('active');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user