Skip to content

Commit

Permalink
update bonzo's amd export
Browse files Browse the repository at this point in the history
  • Loading branch information
fat committed Oct 4, 2011
1 parent 66b23ca commit 1d00225
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bonzo.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/
!function (name, definition) {
if (typeof module != 'undefined') module.exports = definition()
else if (typeof define == 'function') define(definition)
else if (typeof define == 'function' && typeof define.amd == 'object') define(definition)
else this[name] = definition()
}('bonzo', function() {
var context = this
Expand Down
2 changes: 1 addition & 1 deletion bonzo.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bonzo"
, "description": "Library agnostic, extensible DOM utility"
, "version": "0.7.3"
, "version": "0.7.4"
, "homepage": "https://github.com/ded/bonzo"
, "author": "Dustin Diaz <dustin@dustindiaz.com> (http://dustindiaz.com)"
, "keywords": ["ender", "dom", "nodes", "jquery", "iteration", "css"]
Expand Down
2 changes: 1 addition & 1 deletion src/bonzo.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
!function (name, definition) {
if (typeof module != 'undefined') module.exports = definition()
else if (typeof define == 'function') define(definition)
else if (typeof define == 'function' && typeof define.amd == 'object') define(definition)
else this[name] = definition()
}('bonzo', function() {
var context = this
Expand Down

0 comments on commit 1d00225

Please sign in to comment.