From 676422aa798730e17afbcb2a2a51c30251ddd17d Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 20 Apr 2016 17:38:11 +0800 Subject: [PATCH] Array.js --- Array.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Array.js b/Array.js index c77577544e..1d8a2855c1 100644 --- a/Array.js +++ b/Array.js @@ -20,7 +20,7 @@ Roo.applyIf(Array.prototype, { */ indexOf : function(o){ for (var i = 0, len = this.length; i < len; i++){ - if(this[i] == o) return i; + if(this[i] == o) { return i; } } return -1; }, @@ -59,4 +59,4 @@ Roo.applyIf(Array.prototype, { }); - \ No newline at end of file + -- 2.39.2