aboutsummaryrefslogtreecommitdiff
path: root/js/tests/integration/bundle.js
diff options
context:
space:
mode:
authorRohit Sharma <[email protected]>2020-07-22 22:33:11 +0300
committerXhmikosR <[email protected]>2020-11-14 07:09:15 +0200
commit418f17ee2b849dafdc39623ba2378df9229164a7 (patch)
tree7446b75f6b2a8e8ad9f5f8ab8143b4d451c94a14 /js/tests/integration/bundle.js
parentfe961c192d951bde610cdcd4817f4d8548d33141 (diff)
downloadbootstrap-418f17ee2b849dafdc39623ba2378df9229164a7.tar.xz
bootstrap-418f17ee2b849dafdc39623ba2378df9229164a7.zip
Add `bs` in data attributes
- Add `bs` in data APIs everywhere - Update unit tests
Diffstat (limited to 'js/tests/integration/bundle.js')
-rw-r--r--js/tests/integration/bundle.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tests/integration/bundle.js b/js/tests/integration/bundle.js
index 69d754352..1c6e60bf5 100644
--- a/js/tests/integration/bundle.js
+++ b/js/tests/integration/bundle.js
@@ -2,6 +2,6 @@ import 'popper.js'
import { Tooltip } from '../../../dist/js/bootstrap.esm.js'
window.addEventListener('load', () => {
- [...document.querySelectorAll('[data-toggle="tooltip"]')]
+ [...document.querySelectorAll('[data-bs-toggle="tooltip"]')]
.map(tooltipNode => new Tooltip(tooltipNode))
})