d9e1d84f08
- update class name of the spacing, font style, cards and toasts - update attribute names & tooltip usage - remove custom smooth scroll - syntax colors
12 lines
269 B
JavaScript
12 lines
269 B
JavaScript
/**
|
|
* Initial Bootstrap Tooltip.
|
|
*/
|
|
export function loadTooptip() {
|
|
const tooltipTriggerList = document.querySelectorAll(
|
|
'[data-bs-toggle="tooltip"]'
|
|
);
|
|
|
|
[...tooltipTriggerList].map(
|
|
(tooltipTriggerEl) => new bootstrap.Tooltip(tooltipTriggerEl)
|
|
);
|
|
}
|