From 337d88d55959ac66c2cfb9c36bb8d2e92e41fcca Mon Sep 17 00:00:00 2001 From: Erez Schatz Date: Sun, 24 Feb 2013 12:56:13 +0200 Subject: [PATCH] incorrect call to array --- chrome/content/tree.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/tree.js b/chrome/content/tree.js index 0362e9f..c73d077 100644 --- a/chrome/content/tree.js +++ b/chrome/content/tree.js @@ -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;