mirror of
https://github.com/lancedikson/bowser
synced 2024-10-27 20:34:22 +00:00
Merge branch 'hotfix/1.4.4' into develop
This commit is contained in:
commit
246dedd43c
@ -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
|
||||
|
@ -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",
|
||||
|
@ -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 () {
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user