Lines Matching defs:Index
21 function genHTMLOfIndex(Index, CurrentDirectory, IsOutermostList) {
22 // Out will store the HTML elements that Index requires to be generated
24 if (Index.Name) {
26 var TextNode = document.createTextNode(Index.Name);
27 SpanNode.appendChild(genLink(Index, CurrentDirectory));
30 if (Index.Children.length == 0)
35 for (Child of Index.Children) {
46 function createIndex(Index) {
51 var IndexNodes = genHTMLOfIndex(Index, CurrentDirectory, true);
61 LoadIndex().then((Index) => { createIndex(Index); });