aboutsummaryrefslogtreecommitdiff
path: root/js/src/button.js
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2020-07-08 20:09:39 +0300
committerXhmikosR <[email protected]>2020-09-21 14:58:34 +0300
commitb31046aab36ea1e476ff384f585ef650c8158d1e (patch)
tree1f88c461bb248b1dd8876a106e16a52996329822 /js/src/button.js
parentc86b74fe88318cd4483c148a560742b0d2ed6f65 (diff)
downloadbootstrap-b31046aab36ea1e476ff384f585ef650c8158d1e.tar.xz
bootstrap-b31046aab36ea1e476ff384f585ef650c8158d1e.zip
Cache a few variables.
Diffstat (limited to 'js/src/button.js')
-rw-r--r--js/src/button.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/js/src/button.js b/js/src/button.js
index b244c8df4..d79378582 100644
--- a/js/src/button.js
+++ b/js/src/button.js
@@ -111,11 +111,12 @@ class Button {
static _jQueryInterface(config) {
return this.each(function () {
- let data = $(this).data(DATA_KEY)
+ const $element = $(this)
+ let data = $element.data(DATA_KEY)
if (!data) {
data = new Button(this)
- $(this).data(DATA_KEY, data)
+ $element.data(DATA_KEY, data)
}
if (config === 'toggle') {