Skip to content

Commit

Permalink
fix: fix tabs init
Browse files Browse the repository at this point in the history
  • Loading branch information
berezinant committed Nov 21, 2024
1 parent 75da666 commit 6438301
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ window.addEventListener('load', () => {
filterSection.addEventListener('click', (event) => filterButtonHandler(event))
initializeFiltering()
}
initTabs() // initTabs comes from ui-kit/tabs
if (typeof initTabs === 'function') {
initTabs() // initTabs comes from ui-kit/tabs
}
handleAnchor()
topNavbarOffset = document.getElementById('navigation-wrapper')
darkModeSwitch()
Expand Down

0 comments on commit 6438301

Please sign in to comment.