fix TOC height in mobile screen

This commit is contained in:
geekplux 2016-06-09 02:08:58 +08:00
parent 00ca185f8d
commit ee6151f289
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ $( document ).ready(function() {
// set the height of tableOfContents
var $postamble = $('#postamble');
var $tableOfContents = $('#table-of-contents');
$tableOfContents.height($tableOfContents.height() - $postamble.outerHeight());
$tableOfContents.css({paddingBottom: $postamble.outerHeight()});
// add TOC button
var toggleSidebar = $('<div id="toggle-sidebar"><a href="#table-of-contents"><h2>Table of Contents</h2></a></div>');