0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00

scrollspy.js: remove temporary variable (#30724)

This commit is contained in:
XhmikosR 2020-05-04 19:43:50 +03:00
parent f3aed77dc7
commit 0f6cb9139f

View File

@ -214,8 +214,7 @@ class ScrollSpy {
return
}
const offsetLength = this._offsets.length
for (let i = offsetLength; i--;) {
for (let i = this._offsets.length; i--;) {
const isActiveTarget = this._activeTarget !== this._targets[i] &&
scrollTop >= this._offsets[i] &&
(typeof this._offsets[i + 1] === 'undefined' ||