Skip to content

Commit

Permalink
incorrect call to array
Browse files Browse the repository at this point in the history
  • Loading branch information
Erez Schatz committed Feb 24, 2013
1 parent 5f7f92c commit 337d88d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chrome/content/tree.js
Expand Up @@ -462,7 +462,7 @@ var aggregateAllNodes = function(array) {

var childNodes = aggregateAllNodes(array[i].childs);
for (var j = 0; j < childNodes.length; j++)
tempArray.push(childNodesy[j]);
tempArray.push(childNodes[j]);
}
}
return tempArray;
Expand Down

0 comments on commit 337d88d

Please sign in to comment.