1
0
mirror of https://github.com/lancedikson/bowser synced 2024-10-27 20:34:22 +00:00

Merge branch 'hotfix/1.4.3'

This commit is contained in:
Denis Demchenko 2016-07-27 13:04:35 +03:00
commit 3fb9baff5e
3 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
# Bowser Changelog # 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) ### 1.4.2 (July 26, 2016)

View File

@ -7,7 +7,7 @@
"sniff", "sniff",
"detection" "detection"
], ],
"version": "1.4.2", "version": "1.4.3",
"homepage": "https://github.com/ded/bowser", "homepage": "https://github.com/ded/bowser",
"author": "Dustin Diaz <dustin@dustindiaz.com> (http://dustindiaz.com)", "author": "Dustin Diaz <dustin@dustindiaz.com> (http://dustindiaz.com)",
"main": "./src/bowser.js", "main": "./src/bowser.js",

View File

@ -435,7 +435,7 @@
return Array.prototype.map.call(arr, iterator); return Array.prototype.map.call(arr, iterator);
} }
for (i = 0; i < arr.length; i++) { for (i = 0; i < arr.length; i++) {
result = iterator(arr[i]); result.push(iterator(arr[i]));
} }
return result; return result;
} }