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
path: root/js
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-05-08 11:44:01 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-07-12 15:52:25 +0300
commit0eb120eea061795431699f8b0b31dc4c57203d8c (patch)
tree90528b943cb1feb94801f24cfc20954fa62c013a /js
parentb97fcd32899f3aff87b2885dedd99fd8634c0de9 (diff)
tooltip.js: remove variable used once.
Diffstat (limited to 'js')
-rw-r--r--js/src/tooltip.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/js/src/tooltip.js b/js/src/tooltip.js
index 9469a17254..d8d92f57d1 100644
--- a/js/src/tooltip.js
+++ b/js/src/tooltip.js
@@ -740,8 +740,7 @@ class Tooltip {
}
_handlePopperPlacementChange(popperData) {
- const popperInstance = popperData.instance
- this.tip = popperInstance.popper
+ this.tip = popperData.instance.popper
this._cleanTipClass()
this._addAttachmentClass(this._getAttachment(popperData.placement))
}