breaking jquery

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