From 11ecef1797b9e4dd955ef0052cf60192b38624bb Mon Sep 17 00:00:00 2001 From: zhixin Date: Thu, 21 Dec 2017 22:32:34 +0800 Subject: [PATCH] Fix typo --- src/bootstrap-table.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/bootstrap-table.js b/src/bootstrap-table.js index b3e0ba101c..57a6114473 100644 --- a/src/bootstrap-table.js +++ b/src/bootstrap-table.js @@ -185,8 +185,9 @@ var getOwnPropertyNames = Object.getOwnPropertyNames || function (obj) { var arr = []; for (var k in obj) { - if (obj.hasOwnProperty(k)) { - arr.push(k); + if (obj.hasOwnProperty(k)) { + arr.push(k); + } } return arr; };