Skip to content

Commit

Permalink
- ensure the "nextSibling" is correctly set before calling updateInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
canonic-epicure committed Aug 9, 2011
1 parent 2b241aa commit 3a02558
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/data/NodeInterface.js
Expand Up @@ -887,6 +887,10 @@ Ext.define('Ext.data.NodeInterface', {
n = cs[i];
n.previousSibling = cs[i-1];
n.nextSibling = cs[i+1];
}

for (i = 0; i < ln; i++) {
n = cs[i];

if (i === 0) {
this.setFirstChild(n);
Expand Down

0 comments on commit 3a02558

Please sign in to comment.