2019-10-08 19:58:17 +08:00
|
|
|
/*
|
|
|
|
* Hide the empty ToC in posts.
|
2020-01-02 21:17:49 +08:00
|
|
|
* v2.0
|
|
|
|
* https://github.com/cotes2020/jekyll-theme-chirpy
|
2019-10-08 19:58:17 +08:00
|
|
|
* © 2019 Cotes Chung
|
|
|
|
* MIT Licensed
|
|
|
|
*/
|
|
|
|
|
|
|
|
$(function() {
|
2019-12-31 23:17:27 +08:00
|
|
|
if ($("#post-wrapper .post-content h1").length == 0
|
|
|
|
&& $("#post-wrapper .post-content h2").length == 0) {
|
|
|
|
$("#toc-wrapper").addClass("unloaded");
|
2019-10-08 19:58:17 +08:00
|
|
|
}
|
|
|
|
});
|