Lines Matching refs:heading
88 var heading = headings[h];
91 var level = parseInt(heading.tagName.charAt(1));
96 if ((level == masterLevel) && (!hasClass(heading, 'ignoreLink'))) {
97 toc_current_row = AddTOCMaster(tbody_element, heading);
101 if ((level == masterLevel) && (hasClass(heading, 'ignoreLink'))) {
106 AddTOCElements(toc_current_row, heading);
115 function AddTOCMaster(tocTable, heading) { argument
129 link.href = '#' + heading.id; // Create the anchor link
130 link.textContent = heading.textContent; // Link text is same as heading
144 function AddTOCElements(toc_div, heading) { argument
146 if (heading.offsetParent === null) {
156 link.href = '#' + heading.id; // Create the anchor link
157 link.textContent = heading.textContent; // Link text is same as heading
179 var heading = headings[h];
182 var level = parseInt(heading.tagName.charAt(1));
187 if ((level == masterLevel) && (!hasClass(heading, 'ignoreLink'))) {
188 if (heading.offsetParent === null) {
199 link.href = '#' + heading.id; // Create the anchor link
200 link.textContent = heading.textContent; // Link text is same as heading
208 if ((level == masterLevel) && (hasClass(heading, 'ignoreLink'))) {
213 if (heading.offsetParent === null) {
220 link.href = '#' + heading.id; // Create the anchor link
221 link.textContent = heading.textContent; // Link text is same as heading