UNPKG

@tabler/core

Version:

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

13 lines (11 loc) 423 B
import { Dropdown } from './bootstrap'; /* Core dropdowns */ let dropdownTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="dropdown"]')); dropdownTriggerList.map(function (dropdownTriggerEl) { let options = { boundary: dropdownTriggerEl.getAttribute('data-bs-boundary') === 'viewport' ? document.querySelector('.btn') : 'clippingParents', } return new Dropdown(dropdownTriggerEl, options); });