mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-12 01:50:52 +01:00
Fix off-by-one error in anchor blurring logic
This commit is contained in:
parent
7702904526
commit
13b55fa165
@ -74,7 +74,7 @@ export default class Blur {
|
||||
|
||||
/* Scroll direction is up */
|
||||
} else {
|
||||
for (let i = this.index_; i >= 0; i--) {
|
||||
for (let i = this.index_; i > 0; i--) {
|
||||
if (this.anchors_[i].offsetTop > offset) {
|
||||
if (i > 0)
|
||||
delete this.els_[i - 1].dataset.mdState
|
||||
|
Loading…
Reference in New Issue
Block a user