1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-12-19 14:14:17 +00:00

fix(toc): resume fade up animation in desktop mode (#2085)

This commit is contained in:
Cotes Chung
2024-12-03 22:41:28 +08:00
committed by GitHub
parent 4180992272
commit 8280adb901
3 changed files with 6 additions and 6 deletions

View File

@@ -15,8 +15,11 @@ export class TocDesktop {
}
static init() {
if (document.getElementById('toc-wrapper')) {
const $tocWrapper = document.getElementById('toc-wrapper');
if ($tocWrapper) {
tocbot.init(this.options);
$tocWrapper.classList.remove('invisible');
}
}
}