aboutsummaryrefslogtreecommitdiff
path: root/dist/js/bootstrap.bundle.js
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2018-02-24 12:44:44 -0800
committerMark Otto <[email protected]>2018-02-24 12:44:44 -0800
commitf3cec5e7f925ba1cb1700f9de3d728dfc15bccdd (patch)
tree2fee0985fb8837d98189a252624936662543d1de /dist/js/bootstrap.bundle.js
parentb8bfd263581faf4950e3702277126dd7581d7ba8 (diff)
downloadbootstrap-f3cec5e7f925ba1cb1700f9de3d728dfc15bccdd.tar.xz
bootstrap-f3cec5e7f925ba1cb1700f9de3d728dfc15bccdd.zip
dist
Diffstat (limited to 'dist/js/bootstrap.bundle.js')
-rw-r--r--dist/js/bootstrap.bundle.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/dist/js/bootstrap.bundle.js b/dist/js/bootstrap.bundle.js
index 53f65a1ba..2ebece7d7 100644
--- a/dist/js/bootstrap.bundle.js
+++ b/dist/js/bootstrap.bundle.js
@@ -4001,7 +4001,7 @@ var Dropdown = function ($$$1) {
if ('ontouchstart' in document.documentElement && $$$1(parent).closest(Selector.NAVBAR_NAV).length === 0) {
- $$$1('body').children().on('mouseover', null, $$$1.noop);
+ $$$1(document.body).children().on('mouseover', null, $$$1.noop);
}
this._element.focus();
@@ -4184,7 +4184,7 @@ var Dropdown = function ($$$1) {
if ('ontouchstart' in document.documentElement) {
- $$$1('body').children().off('mouseover', null, $$$1.noop);
+ $$$1(document.body).children().off('mouseover', null, $$$1.noop);
}
toggles[i].setAttribute('aria-expanded', 'false');
@@ -4757,8 +4757,8 @@ var Modal = function ($$$1) {
}); // Adjust body padding
var actualPadding = document.body.style.paddingRight;
- var calculatedPadding = $$$1('body').css('padding-right');
- $$$1('body').data('padding-right', actualPadding).css('padding-right', parseFloat(calculatedPadding) + this._scrollbarWidth + "px");
+ var calculatedPadding = $$$1(document.body).css('padding-right');
+ $$$1(document.body).data('padding-right', actualPadding).css('padding-right', parseFloat(calculatedPadding) + this._scrollbarWidth + "px");
}
};
@@ -4780,10 +4780,10 @@ var Modal = function ($$$1) {
}
}); // Restore body padding
- var padding = $$$1('body').data('padding-right');
+ var padding = $$$1(document.body).data('padding-right');
if (typeof padding !== 'undefined') {
- $$$1('body').css('padding-right', padding).removeData('padding-right');
+ $$$1(document.body).css('padding-right', padding).removeData('padding-right');
}
};
@@ -5153,7 +5153,7 @@ var Tooltip = function ($$$1) {
// https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html
if ('ontouchstart' in document.documentElement) {
- $$$1('body').children().on('mouseover', null, $$$1.noop);
+ $$$1(document.body).children().on('mouseover', null, $$$1.noop);
}
var complete = function complete() {
@@ -5214,7 +5214,7 @@ var Tooltip = function ($$$1) {
// empty mouseover listeners we added for iOS support
if ('ontouchstart' in document.documentElement) {
- $$$1('body').children().off('mouseover', null, $$$1.noop);
+ $$$1(document.body).children().off('mouseover', null, $$$1.noop);
}
this._activeTrigger[Trigger.CLICK] = false;