Home | History | Annotate | Download | only in options

Lines Matching full:child

65     addAt: function(child, index) {
66 Tree.prototype.addAt.call(this, child, index);
67 if (child.data && child.data.id)
68 this.treeLookup_[child.data.id] = child;
72 remove: function(child) {
73 Tree.prototype.remove.call(this, child);
74 if (child.data && child.data.id)
75 delete this.treeLookup_[child.data.id];