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