UNPKG

@tabler/core

Version:

Premium and Open Source dashboard template with responsive and high quality UI.

17 lines (12 loc) 427 B
import { Tab } from './bootstrap'; export const EnableActivationTabsFromLocationHash = () => { const locationHash = window.location.hash; if (locationHash) { const tabsList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tab"]')); const matchedTabs = tabsList.filter(tab => tab.hash === locationHash); matchedTabs.map(tab => { new Tab(tab).show(); }); } } EnableActivationTabsFromLocationHash()