Lines Matching refs:depth
26 this.depth = new MoaiEditor.LocalStorage('toc_depth', 5, [2,3,4,5]);
32 const depth = moaiEditor.createHTML('<select id="moaied__toc_depth"></select>');
41 dropdowns.appendChild(depth);
47 depth.addEventListener("change", this.onDepthChange.bind(this));
51 depth.title = "Choose the depth of the table of contents";
55 depth.appendChild(moaiEditor.createHTML('<option value="'+i+'">h'+i+'</option>'));
61 this.depthSelector = depth;
87 const depth = this.depth.value;
88 this.depthSelector.selectedIndex = depth-2;
109 if (header.level > depth)
137 this.depth.value = parseInt(value);