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

Merge branch 'release/1.4.1' into develop

This commit is contained in:
Denis Demchenko 2016-07-07 18:19:25 +03:00
commit f12249c62d
4 changed files with 7 additions and 5 deletions

View File

@ -1,5 +1,8 @@
# Bowser Changelog
### 1.4.1 (July 7, 2016)
- [FIX] Fix `strictMode` logic for `isUnsupportedBrowser`
### 1.4.0 (June 28, 2016)

View File

@ -7,7 +7,7 @@
"sniff",
"detection"
],
"version": "1.3.0",
"version": "1.4.1",
"homepage": "https://github.com/ded/bowser",
"scripts": [
"src/bowser.js"

View File

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

View File

@ -529,9 +529,7 @@
}
}
if (strictMode) {
return false; // not found
}
return strictMode; // not found
}
/**
@ -539,6 +537,7 @@
*
* @param {Object} minVersions map of minimal version to browser
* @param {Boolean} [strictMode = false] flag to return false if browser wasn't found in map
* @param {String} [ua] user agent string
* @return {Boolean}
*/
function check(minVersions, strictMode, ua) {