add toc button for mobile screen

This commit is contained in:
geekplux 2016-06-09 02:04:51 +08:00
parent 2bb57ea40f
commit 051840df3c
1 changed files with 6 additions and 1 deletions

View File

@ -39,11 +39,16 @@ $( document ).ready(function() {
// add sticky table headers
$('table').stickyTableHeaders();
// set the height of tableOfContents
var $postamble = $('#postamble');
var $tableOfContents = $('#table-of-contents');
// set the height of tableOfContents
$tableOfContents.height($tableOfContents.height() - $postamble.outerHeight());
// add TOC button
var toggleSidebar = $('<div id="toggle-sidebar"><a href="#table-of-contents"><h2>Table of Contents</h2></a></div>');
$('#content').prepend(toggleSidebar);
});
window.SphinxRtdTheme = (function (jquery) {