Skip to content

Commit

Permalink
Add bower.json, update package.json, bump to v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Moon committed Jun 6, 2014
1 parent 3f575aa commit 35c08a5
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 10 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,4 @@ http://cdnjs.cloudflare.com/ajax/libs/jquery-ajaxtransport-xdomainrequest/1.0.2/
## Change log

- **1.0.2** - added RequireJS AMD module support
- **1.0.3** - added CommonJS and Bower support
15 changes: 15 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "jQuery-ajaxTransport-XDomainRequest",
"version": "1.0.3",
"main": "jquery.xdomainrequest.min.js",
"description": "Implements automatic Cross Origin Resource Sharing support using the XDomainRequest object for IE8 and IE9 when using the ajax function in jQuery 1.5+.",
"license": "MIT",
"ignore": [
"jQuery.XDomainRequest.js",
"LICENSE.txt",
"README.md"
],
"dependencies": {
"jquery": ">=1.5"
}
}
2 changes: 1 addition & 1 deletion jQuery.XDomainRequest.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jQuery-ajaxTransport-XDomainRequest - v1.0.2 - 2014-05-02
* jQuery-ajaxTransport-XDomainRequest - v1.0.3 - 2014-06-06
* https://github.com/MoonScript/jQuery-ajaxTransport-XDomainRequest
* Copyright (c) 2014 Jason Moon (@JSONMOON)
* Licensed MIT (/blob/master/LICENSE.txt)
Expand Down
4 changes: 2 additions & 2 deletions jquery.xdomainrequest.min.js

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

20 changes: 13 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
{
"name": "jquery-xdomainrequest",
"version": "1.0.2",
"description": "jQuery ajaxTransport extension that uses XDomainRequest for IE8+",
"name": "jQuery-ajaxTransport-XDomainRequest",
"version": "1.0.3",
"main": "jquery.xdomainrequest.min.js",
"description": "Implements automatic Cross Origin Resource Sharing support using the XDomainRequest object for IE8 and IE9 when using the ajax function in jQuery 1.5+.",
"license": "MIT",
"ignore": [
"jQuery.XDomainRequest.js",
"LICENSE.txt",
"README.md"
],
"dependencies": {
"jquery": ">=1.5.0"
},
"main": "jQuery.XDomainRequest.js"
}
"jquery": ">=1.5"
}
}

0 comments on commit 35c08a5

Please sign in to comment.