1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r9327: Rename parent to fParent to prevent confusion with window.parent object.

(Thanks, Derrell, for the reminder.)
Rename child to fChild, to be consistent and maintain readability.

deryck
This commit is contained in:
Deryck Hodge 2005-08-16 19:47:27 +00:00 committed by Gerald (Jerry) Carter
parent 95d96c79a5
commit 6040f9401e

View File

@ -43,25 +43,25 @@ call.run();
<script type="text/javascript">
function folder_list(parent, list) {
function folder_list(fParent, list) {
var i;
parent.populated = true;
parent.removeAll();
fParent.populated = true;
fParent.removeAll();
for (i=0;i<list.length;i++) {
var child;
child = new QxTreeFolder(list[i]);
parent.add(child);
child.binding = parent.binding;
if (parent.reg_path == '\\\\') {
child.reg_path = list[i];
var fChild;
fChild = new QxTreeFolder(list[i]);
fParent.add(fChild);
fChild.binding = fParent.binding;
if (fParent.reg_path == '\\\\') {
fChild.reg_path = list[i];
} else {
child.reg_path = parent.reg_path + '\\\\' + list[i];
fChild.reg_path = fParent.reg_path + '\\\\' + list[i];
}
child.add(new QxTreeFolder('Working ...'));
child.addEventListener("click", function() {
fChild.add(new QxTreeFolder('Working ...'));
fChild.addEventListener("click", function() {
var el = this; folder_click(el);
});
parent.setOpen(1);
fParent.setOpen(1);
}
}