A documentation section has been added to the site.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
let blockDocumentationVersion = document.querySelector('#documentation-version');
|
||||
blockDocumentationVersion.querySelector('.documentation-version__button').addEventListener('click', (e) => {
|
||||
if (blockDocumentationVersion.classList.contains('active')) {
|
||||
blockDocumentationVersion.classList.remove('active');
|
||||
} else {
|
||||
blockDocumentationVersion.classList.add('active');
|
||||
}
|
||||
});
|
@@ -1,2 +1,3 @@
|
||||
import './_menu.js';
|
||||
import './_choose-language.js';
|
||||
import './_choose-documentation-version.js';
|
||||
|
Reference in New Issue
Block a user