kopia lustrzana https://github.com/c9/core
fix silent flag for tree expand
rodzic
64cc0d03f3
commit
351af82d49
|
@ -89,9 +89,9 @@ var DataProvider = function(root) {
|
||||||
var childNode = ch[j];
|
var childNode = ch[j];
|
||||||
if (this.isOpen(childNode)) {
|
if (this.isOpen(childNode)) {
|
||||||
this.setOpen(childNode, false);
|
this.setOpen(childNode, false);
|
||||||
this.open(childNode, deep - 1);
|
this.open(childNode, deep - 1, silent);
|
||||||
} else if (deep > 0) {
|
} else if (deep > 0) {
|
||||||
this.open(childNode, deep - 1);
|
this.open(childNode, deep - 1, silent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue