Monotone-Parent: ae56d5117f5b648163117349eff8696b1b010e47

Monotone-Revision: 763cdd65301c2ece5f7e7a480dc165fb25068f9a

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-11-24T04:10:38
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2008-11-24 04:10:38 +00:00
parent 2262527408
commit 27f9ea0dcd
9 changed files with 157 additions and 67 deletions
+1 -1
View File
@@ -186,7 +186,7 @@ dTree.prototype.indent = function(node, nodeId) {
(node._ls) ? this.aIndent.push(0) : this.aIndent.push(1);
if (node._hc)
{
str += '<a href="#" onclick="return ' + this.obj + '.o(' + nodeId + ');"><img id="j' + this.obj + nodeId + '" src="';
str += '<a href="#" id="tg' + this.obj + nodeId + '" onclick="return ' + this.obj + '.o(' + nodeId + ');"><img id="j' + this.obj + nodeId + '" src="';
if (!this.config.useLines) str += (node._io) ? this.icon.nlMinus : this.icon.nlPlus;
else str += ( (node._io) ? ((node._ls && this.config.useLines) ? this.icon.minusBottom : this.icon.minus) : ((node._ls && this.config.useLines) ? this.icon.plusBottom : this.icon.plus ) );
str += '" alt="" /></a>';