• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/src/router/arm-uclibc/target/www/

Lines Matching defs:str

60 	var str = '<div class="dtree">\n';
62 str += this.addNode(this.root);
63 } else str += 'Browser not supported.';
64 str += '</div>';
66 return str;
71 var str = '';
85 str += this.node(cn, n);
89 return str;
94 var str = '<div class="dTreeNode">' + this.indent(node, nodeId);
102 str += '<img id="i' + this.obj + nodeId + '" src="' + ((node.io == '1') ? node.iconOpen : node.icon) + '" alt="" />';
105 str += '<a id="s' + this.obj + nodeId + '">';
108 str += '<a id="s' + this.obj + nodeId + '" href="javascript: ' + this.obj + '.s(' + nodeId + ');" class="'+((node.id == this.selectedNode) ? 'nodeSel' : 'node')+'">';
110 str += node.name;
112 str += '</a>';
113 str += '</div>';
115 str += '<div id="d' + this.obj + nodeId + '" class="clip" style="display:' + ((this.root.id == node.pid || node.io == '1' ) ? 'block' : 'none') + ';">';
116 str += this.addNode(node);
117 str += '</div>';
120 str += '<div id="d' + this.obj + nodeId + '" class="clip"></div>';
122 return str;
130 var str = '';
133 str += '<img src="' + ( (this.aIndent[n] == 1) ? this.icon.line : this.icon.empty ) + '" alt="" />';
136 str += '<a href="javascript: ' + this.obj + '.s(' + nodeId + ');"><img id="j' + this.obj + nodeId + '" src="';
138 str += ( (node.io == '1') ? ((node._ls ) ? this.icon.minusBottom : this.icon.minus) : ((node._ls ) ? this.icon.plusBottom : this.icon.plus ) );
139 str += '" alt="" /></a>';
141 } else str += '<img id="j' + this.obj + nodeId + '" src="' + ((node._ls) ? this.icon.joinBottom : this.icon.join ) + '" alt="" />';
143 return str;
175 var str = eval('node' + id);
176 echo_info = str.split('*');