fix silent flag for tree expand

pull/248/head
nightwing 2016-01-25 13:58:46 +04:00
rodzic 64cc0d03f3
commit 351af82d49
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -89,9 +89,9 @@ var DataProvider = function(root) {
var childNode = ch[j];
if (this.isOpen(childNode)) {
this.setOpen(childNode, false);
this.open(childNode, deep - 1);
this.open(childNode, deep - 1, silent);
} else if (deep > 0) {
this.open(childNode, deep - 1);
this.open(childNode, deep - 1, silent);
}
}