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-05-12 12:15:59 +0300
committerGitHub <noreply@github.com>2021-05-12 12:15:59 +0300
commit9a9e22475c9c9d6a4a621daeba5bbfbe8dd280a7 (patch)
tree701c0e6af67087725344549d1f3a84cf36a746e2 /js/src/popover.js
parent15d01053935300a605939f95fd59dac50ab97974 (diff)
Popover/Tooltip: streamline config property to start with underscore (#33381)
Diffstat (limited to 'js/src/popover.js')
-rw-r--r--js/src/popover.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/popover.js b/js/src/popover.js
index c105ee2a14..ab57ad570e 100644
--- a/js/src/popover.js
+++ b/js/src/popover.js
@@ -112,7 +112,7 @@ class Popover extends Tooltip {
}
_getContent() {
- return this._element.getAttribute('data-bs-content') || this.config.content
+ return this._element.getAttribute('data-bs-content') || this._config.content
}
_cleanTipClass() {