aboutsummaryrefslogtreecommitdiff
path: root/js/tests/unit/tooltip.js
diff options
context:
space:
mode:
authorJohann-S <[email protected]>2018-03-11 16:18:56 +0100
committerXhmikosR <[email protected]>2019-02-20 22:05:45 +0200
commit7eddee286eb76da4d057a59706e4c512206dab45 (patch)
tree5319cd291c015fcec49e2af0cb1c890d0d966927 /js/tests/unit/tooltip.js
parent0263d1742ce8ad25f0f2de30beebae69b2f55f10 (diff)
downloadbootstrap-7eddee286eb76da4d057a59706e4c512206dab45.tar.xz
bootstrap-7eddee286eb76da4d057a59706e4c512206dab45.zip
remove old references to jquery and some fixes
Diffstat (limited to 'js/tests/unit/tooltip.js')
-rw-r--r--js/tests/unit/tooltip.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/tests/unit/tooltip.js b/js/tests/unit/tooltip.js
index d2729fa64..081cbb109 100644
--- a/js/tests/unit/tooltip.js
+++ b/js/tests/unit/tooltip.js
@@ -1000,7 +1000,7 @@ $(function () {
.appendTo('#qunit-fixture')
.bootstrapTooltip()
- var tooltip = $tooltip.data('bs.tooltip')
+ var tooltip = Data.getData($tooltip[0], 'bs.tooltip')
tooltip.show()
assert.ok(tooltip._popper)
@@ -1016,7 +1016,7 @@ $(function () {
.appendTo('#qunit-fixture')
.bootstrapTooltip()
- var tooltip = $tooltip.data('bs.tooltip')
+ var tooltip = Data.getData($tooltip[0], 'bs.tooltip')
tooltip.update()
assert.ok(tooltip._popper === null)