Monotone-Parent: 69f4dab4873454f7a95f8824f9f72c5a71f8d3d7

Monotone-Revision: a3b7b268652223f09bb5a43b037710e48aed6f1e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-11-10T23:00:04
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-11-10 23:00:04 +00:00
parent eb1a16bc87
commit d8e1dea8f5
3 changed files with 7 additions and 8 deletions
+4 -5
View File
@@ -10,9 +10,9 @@
|--------------------------------------------------*/
// Node object
function Node(id, pid, name, url, onclick, dataname, datatype, title, target,
function Node(id, pid, name, isParent, url, onclick, dataname, datatype, title, target,
icon, iconOpen, open) {
this.isParent = false;
this.isParent = isParent;
this.id = id;
this.pid = pid;
this.name = name;
@@ -72,9 +72,9 @@ function dTree(objName) {
};
// Adds a new node to the node array
dTree.prototype.add = function(id, pid, name, url, onclick, datatype,
dTree.prototype.add = function(id, pid, name, isParent, url, onclick, datatype,
title, target, icon, iconOpen, open) {
this.aNodes[this.aNodes.length] = new Node(id, pid, name, url, onclick,
this.aNodes[this.aNodes.length] = new Node(id, pid, name, isParent, url, onclick,
datatype, title, target, icon,
iconOpen, open);
};
@@ -105,7 +105,6 @@ dTree.prototype.toString = function() {
dTree.prototype.addNode = function(pNode) {
var str = '';
var n=0;
pNode.isParent = true;
if (this.config.inOrder) n = pNode._ai;
for (n; n<this.aNodes.length; n++) {
if (this.aNodes[n].pid == pNode.id) {