From 3443b0e76569dd2d20fb90a5e9a0ae8b0aa830d8 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 20 Apr 2016 17:38:56 +0800 Subject: [PATCH] Array.js --- Array.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Array.js b/Array.js index ed3a095cec..4095aee53d 100644 --- a/Array.js +++ b/Array.js @@ -49,8 +49,9 @@ Roo.applyIf(Array.prototype, { var thisp = arguments[1]; for (var i = 0; i < len; i++) { - if (i in this) + if (i in this) { res[i] = fun.call(thisp, this[i], i, this); + } } return res; -- 2.39.2