This commit is contained in:
John Mulhausen
2016-02-10 13:25:22 -08:00
+2 -1
View File
@@ -39,8 +39,9 @@ buildRec = function(headingNodes, $elm, lv) {
} }
}; };
$(document).ready(function(){ $(document).ready(function(){
return;
var headingNodes = $('#docsContent').children().filter(":header"); var headingNodes = $('#docsContent').children().filter(":header");
var result = $('<ul style="list-style-type: none; padding-left:0px;">'); var result = $('<ul style="list-style-type: none; padding-left:0px;">');
buildRec(headingNodes,result,1); buildRec(headingNodes,result,1);
$("#pageTOC").append(result); $("#pageTOC").append(result);
}); });