krata/assets/js/_src/toc.js

16 lines
413 B
JavaScript
Raw Normal View History

/*
* Hide the empty ToC in posts.
*
* © 2019 Cotes Chung
* MIT Licensed
*/
$(function() {
2019-11-24 17:19:03 +01:00
if ($("#post-wrap .post-content h1").length == 0
&& $("#post-wrap .post-content h2").length == 0
&& $("#post-wrap .post-content h3").length == 0
&& $("#post-wrap .post-content h4").length == 0
&& $("#post-wrap .post-content h5").length == 0) {
$("#toc-wrap").addClass("hidden");
}
});