aboutsummaryrefslogtreecommitdiff
path: root/js/dist/popover.js
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2021-09-28 19:26:44 +0300
committerXhmikosR <[email protected]>2021-09-28 19:26:44 +0300
commita55f9b6a1296d66e613e9ed6caefe36001c5018b (patch)
treeb115c6696ac48f5a29c84749bb38f3754a18ae61 /js/dist/popover.js
parentb6575086b6190fa9cdf86b9402f5012a613543bf (diff)
downloadbootstrap-main-xmr-rollup.tar.xz
bootstrap-main-xmr-rollup.zip
Diffstat (limited to 'js/dist/popover.js')
-rw-r--r--js/dist/popover.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/js/dist/popover.js b/js/dist/popover.js
index 891e80314..0e80ed88d 100644
--- a/js/dist/popover.js
+++ b/js/dist/popover.js
@@ -9,9 +9,9 @@
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Popover = factory(global.Tooltip));
})(this, (function (Tooltip) { 'use strict';
- function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
+ const _interopDefaultLegacy = e => e && typeof e === 'object' && 'default' in e ? e : { default: e };
- var Tooltip__default = /*#__PURE__*/_interopDefaultLegacy(Tooltip);
+ const Tooltip__default = /*#__PURE__*/_interopDefaultLegacy(Tooltip);
/**
* --------------------------------------------------------------------------
@@ -84,14 +84,14 @@
const DATA_KEY = 'bs.popover';
const EVENT_KEY = `.${DATA_KEY}`;
const CLASS_PREFIX = 'bs-popover';
- const Default = { ...Tooltip__default["default"].Default,
+ const Default = { ...Tooltip__default.default.Default,
placement: 'right',
offset: [0, 8],
trigger: 'click',
content: '',
template: '<div class="popover" role="tooltip">' + '<div class="popover-arrow"></div>' + '<h3 class="popover-header"></h3>' + '<div class="popover-body"></div>' + '</div>'
};
- const DefaultType = { ...Tooltip__default["default"].DefaultType,
+ const DefaultType = { ...Tooltip__default.default.DefaultType,
content: '(string|element|function)'
};
const Event = {
@@ -114,7 +114,7 @@
* ------------------------------------------------------------------------
*/
- class Popover extends Tooltip__default["default"] {
+ class Popover extends Tooltip__default.default {
// Getters
static get Default() {
return Default;