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

Merge branch 'hotfix/1.4.4'

This commit is contained in:
Denis Demchenko 2016-08-10 22:28:32 +03:00
commit 09e12dcf7a
3 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
# Bowser Changelog
### 1.4.4 (August 10, 2016)
- [FIX] Fix AMD `define` call — pass name to the function
### 1.4.3 (July 27, 2016)
- [FIX] Fix error `Object doesn't support this property or method` on IE8

View File

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

View File

@ -6,7 +6,7 @@
!function (name, definition) {
if (typeof module != 'undefined' && module.exports) module.exports = definition()
else if (typeof define == 'function' && define.amd) define(definition)
else if (typeof define == 'function' && define.amd) define(name, definition)
else this[name] = definition()
}('bowser', function () {
/**