Skip to content

Commit

Permalink
Merge branch 'hotfix/1.4.4' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
lancedikson committed Aug 10, 2016
2 parents 59b9f55 + b75c3ab commit 246dedd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"sniff",
"detection"
],
"version": "1.4.3",
"version": "1.4.4",
"homepage": "https://github.com/ded/bowser",
"author": "Dustin Diaz <[email protected]> (http://dustindiaz.com)",
"main": "./src/bowser.js",
Expand Down
2 changes: 1 addition & 1 deletion src/bowser.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 () {
/**
Expand Down

0 comments on commit 246dedd

Please sign in to comment.