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/src/tooltip.js
parent4112df4125961da2da5e08a1f61a8a09654fb8fc (diff)
fix(tooltip): get tip on placement change
Diffstat (limited to 'js/src/tooltip.js')
-rw-r--r--js/src/tooltip.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/js/src/tooltip.js b/js/src/tooltip.js
index 56c1aa0d15..c66e48385d 100644
--- a/js/src/tooltip.js
+++ b/js/src/tooltip.js
@@ -660,9 +660,11 @@ const Tooltip = (($) => {
}
}
- _handlePopperPlacementChange(data) {
+ _handlePopperPlacementChange(popperData) {
+ const popperInstance = popperData.instance
+ this.tip = popperInstance.popper
this._cleanTipClass()
- this.addAttachmentClass(this._getAttachment(data.placement))
+ this.addAttachmentClass(this._getAttachment(popperData.placement))
}
_fixTransition() {