Fix broken TOC toggle

This commit is contained in:
Michael Rose
2014-10-03 15:14:20 -04:00
parent 80f6c002f5
commit d0313bd423
3 changed files with 11 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ $(function() {
// Table of Contents toggle
$(function() {
$(".toc h3").click(function () {
$("#drawer").toggleClass("hidden");
$("#drawer").toggleClass("js-hidden");
});
});