aboutsummaryrefslogtreecommitdiff
path: root/js/src/scrollspy.js
diff options
context:
space:
mode:
authorRohit Sharma <[email protected]>2021-02-22 12:31:04 +0530
committerGitHub <[email protected]>2021-02-22 09:01:04 +0200
commitdc5e3328c12058de7fb6404edbe5dcee61f3400f (patch)
treeef141013ee4df32fbd3e581d9647e71f713bb043 /js/src/scrollspy.js
parentd983744d12be0937bb1aaef06057385d9b553e0c (diff)
downloadbootstrap-dc5e3328c12058de7fb6404edbe5dcee61f3400f.tar.xz
bootstrap-dc5e3328c12058de7fb6404edbe5dcee61f3400f.zip
Allow constructors to accept a CSS selector (#32245)
Co-authored-by: XhmikosR <[email protected]> Co-authored-by: Mark Otto <[email protected]>
Diffstat (limited to 'js/src/scrollspy.js')
-rw-r--r--js/src/scrollspy.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/scrollspy.js b/js/src/scrollspy.js
index 43a91e5e9..0c51eab0f 100644
--- a/js/src/scrollspy.js
+++ b/js/src/scrollspy.js
@@ -68,7 +68,7 @@ const METHOD_POSITION = 'position'
class ScrollSpy extends BaseComponent {
constructor(element, config) {
super(element)
- this._scrollElement = element.tagName === 'BODY' ? window : element
+ this._scrollElement = this._element.tagName === 'BODY' ? window : this._element
this._config = this._getConfig(config)
this._selector = `${this._config.target} ${SELECTOR_NAV_LINKS}, ${this._config.target} ${SELECTOR_LIST_ITEMS}, ${this._config.target} .${CLASS_NAME_DROPDOWN_ITEM}`
this._offsets = []