1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-10 15:44:51 +02:00

Add v5.2.0-beta1 docs (#36338)

This commit is contained in:
XhmikosR
2022-05-13 20:19:48 +03:00
committed by GitHub
parent 0d0ca30f5d
commit cdce51caab
344 changed files with 174861 additions and 587 deletions

View File

@@ -0,0 +1,8 @@
/* global bootstrap: false */
(() => {
'use strict'
const tooltipTriggerList = Array.from(document.querySelectorAll('[data-bs-toggle="tooltip"]'))
tooltipTriggerList.forEach(tooltipTriggerEl => {
new bootstrap.Tooltip(tooltipTriggerEl)
})
})()