mirror of
https://gitee.com/docsifyjs/docsify.git
synced 2024-12-02 12:10:04 +08:00
Fixed sidebar bug when the coverpage exist
This commit is contained in:
parent
7915027418
commit
90b490c9c1
@ -1,3 +1,7 @@
|
||||
## 1.6.1
|
||||
### Bug fixes
|
||||
- Fixed sidebar bug when the coverpage exist
|
||||
|
||||
## 1.6.0
|
||||
### Features
|
||||
- Improve sidebar performance. The active item is automatically scrolled in the visible view.
|
||||
|
@ -48,7 +48,7 @@ export function scrollActiveSidebar () {
|
||||
|
||||
li.classList.add('active')
|
||||
active = li
|
||||
!hoveredOverSidebar && active.scrollIntoView()
|
||||
!hoveredOverSidebar && sticky.isSticky && active.scrollIntoView()
|
||||
}
|
||||
|
||||
window.removeEventListener('scroll', highlight)
|
||||
@ -125,8 +125,10 @@ export function sticky () {
|
||||
return (function () {
|
||||
if (window.pageYOffset >= coverHeight || dom.classList.contains('hidden')) {
|
||||
document.body.classList.add('sticky')
|
||||
sticky.isSticky = true
|
||||
} else {
|
||||
document.body.classList.remove('sticky')
|
||||
sticky.isSticky = false
|
||||
}
|
||||
})()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user