Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann-S <johann.servoire@gmail.com>2018-04-30 11:49:43 +0300
committerJohann-S <johann.servoire@gmail.com>2018-06-25 17:54:14 +0300
commite57a2f244ba8446fffe71847e6a58b18f7b2d541 (patch)
tree2c0abd32f4dea0223c4a337612d3c36a5b6f0d91 /js/tests/unit/tooltip.js
parent4112df4125961da2da5e08a1f61a8a09654fb8fc (diff)
fix(tooltip): get tip on placement change
Diffstat (limited to 'js/tests/unit/tooltip.js')
-rw-r--r--js/tests/unit/tooltip.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/js/tests/unit/tooltip.js b/js/tests/unit/tooltip.js
index 670e6d0c2e..9cf3068a36 100644
--- a/js/tests/unit/tooltip.js
+++ b/js/tests/unit/tooltip.js
@@ -943,4 +943,27 @@ $(function () {
assert.ok(tooltip._popper === null)
})
+
+ QUnit.test('should use Popper.js to get the tip on placement change', function (assert) {
+ assert.expect(1)
+
+ var $tooltip = $('<a href="#" rel="tooltip" data-trigger="click" title="Another tooltip"/>')
+ .appendTo('#qunit-fixture')
+ .bootstrapTooltip()
+
+ var $tipTest = $('<div class="bs-tooltip" />')
+ .appendTo('#qunit-fixture')
+
+ var tooltip = $tooltip.data('bs.tooltip')
+ tooltip.tip = null
+
+ tooltip._handlePopperPlacementChange({
+ instance: {
+ popper: $tipTest[0]
+ },
+ placement: 'auto'
+ })
+
+ assert.ok(tooltip.tip === $tipTest[0])
+ })
})