Home | History | Annotate | Download | only in options

Lines Matching full:data

10    * Creates a new tree item for certificate data.
11 * @param {Object=} data Data used to create a certificate tree item.
15 function CertificateTreeItem(data) {
18 label: data.name,
19 data: data
23 if (data.icon) {
24 treeItem.icon = data.icon;
40 return parent.pathId + ',' + this.data.id;
42 return this.data.id;
67 if (child.data && child.data.id)
68 this.treeLookup_[child.data.id] = child;
74 if (child.data && child.data.id)
75 delete this.treeLookup_[child.data.id];
92 * @param {Array} nodesData Nodes data array.