From b774788c346bc4bddfb6d3a42c5efa546d502d2a Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sat, 22 Mar 2014 15:59:20 +0400 Subject: [PATCH] fixed a typo... Signed-off-by: Alex A. Naanou --- ui/lib/jli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/lib/jli.js b/ui/lib/jli.js index 059233a2..0e3287f9 100755 --- a/ui/lib/jli.js +++ b/ui/lib/jli.js @@ -1116,7 +1116,7 @@ Object.get = function(obj, name, dfl){ // // NOTE: this will not compact in-place. Array.prototype.compact = function(){ - return list.filter(function(){ return true }) + return this.filter(function(){ return true }) }