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:
commit
09e12dcf7a
@ -1,5 +1,9 @@
|
|||||||
# Bowser Changelog
|
# Bowser Changelog
|
||||||
|
|
||||||
|
### 1.4.4 (August 10, 2016)
|
||||||
|
|
||||||
|
- [FIX] Fix AMD `define` call — pass name to the function
|
||||||
|
|
||||||
### 1.4.3 (July 27, 2016)
|
### 1.4.3 (July 27, 2016)
|
||||||
|
|
||||||
- [FIX] Fix error `Object doesn't support this property or method` on IE8
|
- [FIX] Fix error `Object doesn't support this property or method` on IE8
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
"sniff",
|
"sniff",
|
||||||
"detection"
|
"detection"
|
||||||
],
|
],
|
||||||
"version": "1.4.3",
|
"version": "1.4.4",
|
||||||
"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",
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
!function (name, definition) {
|
!function (name, definition) {
|
||||||
if (typeof module != 'undefined' && module.exports) module.exports = 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()
|
else this[name] = definition()
|
||||||
}('bowser', function () {
|
}('bowser', function () {
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user