Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wenzhixin committed Dec 21, 2017
1 parent 44f3bf5 commit 11ecef1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/bootstrap-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit 11ecef1

Please sign in to comment.