1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-10-03 08:41:59 +02:00

Cache a few variables.

This commit is contained in:
XhmikosR
2020-07-08 20:09:39 +03:00
parent c86b74fe88
commit b31046aab3
4 changed files with 12 additions and 9 deletions

View File

@@ -735,7 +735,8 @@ class Tooltip {
static _jQueryInterface(config) {
return this.each(function () {
let data = $(this).data(DATA_KEY)
const $element = $(this)
let data = $element.data(DATA_KEY)
const _config = typeof config === 'object' && config
if (!data && /dispose|hide/.test(config)) {
@@ -744,7 +745,7 @@ class Tooltip {
if (!data) {
data = new Tooltip(this, _config)
$(this).data(DATA_KEY, data)
$element.data(DATA_KEY, data)
}
if (typeof config === 'string') {