Browse Source

JSY-27224 性能

research/test
Lee94 1 year ago committed by Kevin.King
parent
commit
ad64fd7e35
  1. 4
      src/core/structure/tree.js

4
src/core/structure/tree.js

@ -127,7 +127,9 @@
continue;
}
if (temp != null) {
queue = queue.concat(temp.getChildren());
BI.each(temp.getChildren(), function(_i, t) {
queue.push(t);
})
}
}
},

Loading…
Cancel
Save