3248343c22
- Added a cleanup button within input form. - Optimized TopBar responsive effect(for search layout). - Redesign the search results layout.
13 lines
No EOL
262 B
JavaScript
13 lines
No EOL
262 B
JavaScript
/*
|
|
* Hide the empty ToC in posts.
|
|
*
|
|
* © 2019 Cotes Chung
|
|
* MIT Licensed
|
|
*/
|
|
|
|
$(function() {
|
|
if ($("#post-wrapper .post-content h1").length == 0
|
|
&& $("#post-wrapper .post-content h2").length == 0) {
|
|
$("#toc-wrapper").addClass("unloaded");
|
|
}
|
|
}); |