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
diff options
context:
space:
mode:
authorGeoSot <geo.sotis@gmail.com>2021-11-25 21:08:11 +0300
committerGitHub <noreply@github.com>2021-11-25 21:08:11 +0300
commit6f077ff7bcf5c3e8a9cd579e26a2325ce32543c9 (patch)
treed5724e70a005c3e44c0255758d3f973ba84a75db /js/src/popover.js
parent374eeecfbcabae20da08ce00d0f9268bb67b1e5e (diff)
Clean tooltip component unneeded functionality (#32692)
Diffstat (limited to 'js/src/popover.js')
-rw-r--r--js/src/popover.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/js/src/popover.js b/js/src/popover.js
index 0b255a585e..19c1e42a4d 100644
--- a/js/src/popover.js
+++ b/js/src/popover.js
@@ -15,7 +15,6 @@ import Tooltip from './tooltip'
const NAME = 'popover'
const DATA_KEY = 'bs.popover'
const EVENT_KEY = `.${DATA_KEY}`
-const CLASS_PREFIX = 'bs-popover'
const SELECTOR_TITLE = '.popover-header'
const SELECTOR_CONTENT = '.popover-body'
@@ -90,10 +89,6 @@ class Popover extends Tooltip {
return this._resolvePossibleFunction(this._config.content)
}
- _getBasicClassPrefix() {
- return CLASS_PREFIX
- }
-
// Static
static jQueryInterface(config) {
return this.each(function () {