Skip to content

Commit

Permalink
Merge branch 'hotfix/1.4.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
lancedikson committed Jul 27, 2016
2 parents 94da04f + 2db375d commit 3fb9baf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Bowser Changelog

### 1.4.3 (July 27, 2016)

- [FIX] Fix error `Object doesn't support this property or method` on IE8

### 1.4.2 (July 26, 2016)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"sniff",
"detection"
],
"version": "1.4.2",
"version": "1.4.3",
"homepage": "https://github.com/ded/bowser",
"author": "Dustin Diaz <[email protected]> (http://dustindiaz.com)",
"main": "./src/bowser.js",
Expand Down
2 changes: 1 addition & 1 deletion src/bowser.js
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@
return Array.prototype.map.call(arr, iterator);
}
for (i = 0; i < arr.length; i++) {
result = iterator(arr[i]);
result.push(iterator(arr[i]));
}
return result;
}
Expand Down

0 comments on commit 3fb9baf

Please sign in to comment.