mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-12-18 05:41:31 +00:00
Improved the TOC.
Automatically hide TOC titles
This commit is contained in:
13
assets/js/_src/toc.js
Normal file
13
assets/js/_src/toc.js
Normal file
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
* Hide the empty ToC in posts.
|
||||
*
|
||||
* © 2019 Cotes Chung
|
||||
* MIT Licensed
|
||||
*/
|
||||
|
||||
$(function() {
|
||||
// Hide ToC title if there is no head
|
||||
if ($("#toc-wrap>nav#toc>ul>li").length == 0) {
|
||||
$("#toc-wrap>h3").addClass("hidden");
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user