Lines Matching refs:str

203     let str = '';
206 str += '<div id="cdtree_' + this.treeName + '" class="dtree" style="position:relative;overflow:hidden;width:100%;">';
208 str += '<div id="dtree_' + this.treeName + '" class="dtree ' + this.config.theme + '" style="overflow:';
210 str += 'visible;position:relative;width:100%"';
212 str += 'hidden;"';
214 str += '>';
216 str += '<div class="error">Indexmenu id conflict</div>';
219 str += '<div id="t' + this.treeName + '" class="indexmenu_tocbullet ' + this.config.theme + '" style="display:none;" title="Table of contents"></div>';
220 str += '<div id="toc_' + this.treeName + '" style="display:none;"></div>';
225 str += this.addNode(this.root) + '</div>';
227 str += '<div id="z' + this.treeName + '" class="indexmenu_rarrow"></div>';
228 str += '<div id="left_' + this.treeName + '" class="indexmenu_larrow" style="display:none;" title="Click to scroll back" onmousedown="' + this.treeName + '.scroll(\'r\',1)" onmouseup="' + this.treeName + '.stopscroll()"></div>';
229 str += '</div>';
234 return str;
244 let str = '', cn, n = pNode._ai, l = pNode._lvl + 1;
264 str += this.noderr(cn, n);
267 str += this.node(cn, n);
274 return str;
285 let str = '<div class="dTreeNode">' + this.indent(node, nodeId);
286 str += '<div class="emptynode" title="Empty"></div></div>';
287 return str;
298 let h = 1, jsfnc, str;
305 str = '<div class="dTreeNode">' + this.indent(node, nodeId);
312 str += '<img id="i' + this.treeName + nodeId + '" src="' + ((node._io) ? node.iconOpen : node.icon) + '" alt="" />';
314 str += '<a id="s' + this.treeName + nodeId + '" class="' + ((node._cp) ? 'navSel' : ((node._is) ? 'nodeSel' : (node._hc) ? 'nodeFdUrl' : 'nodeUrl'));
315 str += '" href="' + this.config.urlbase;
316 (node.hns) ? str += node.hns : str += node.dokuid;
317 str += '"' + ' title="' + node.name + '"' + jsfnc;
318 str += ' onclick="javascript: ' + this.treeName + '.s(' + nodeId + ');"';
319 str += '>' + node.name + '</a>';
322 str += '<a id="s' + this.treeName + nodeId + '" href="javascript: ' + this.treeName + '.o(' + nodeId + '); " class="node"' + jsfnc + '>' + node.name + '</a>';
324 str += node.name;
326 str += '</div>';
328 str += '<div id="d' + this.treeName + nodeId + '" class="clip" style="display:' + ((this.root.id === node.pid || node._io) ? 'block' : 'none') + ';">';
330 str += this.addNode(node);
332 str += '</div>';
335 return str;
346 let n, str = '';
349 str += '<img src="' + ( (this.aIndent[n] === 1) ? this.icon.line : this.icon.empty ) + '" alt="" />';
357 str += '<a href="javascript: ' + this.treeName + '.o(' + nodeId + ');">' +
362 str += '<img src="' + ((node._ls) ? this.icon.joinBottom : this.icon.join) + '" alt="" />';
365 return str;
574 let str = '', n;
577 if (str) {
578 str += '.';
580 str += this.aNodes[n].id;
583 this.setCookie('co' + this.treeName, str);