Skip to content

Commit 35c08a5

Browse files
author
Jason Moon
committed
Add bower.json, update package.json, bump to v1.0.3
1 parent 3f575aa commit 35c08a5

5 files changed

+32
-10
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,4 @@ http://cdnjs.cloudflare.com/ajax/libs/jquery-ajaxtransport-xdomainrequest/1.0.2/
4444
## Change log
4545

4646
- **1.0.2** - added RequireJS AMD module support
47+
- **1.0.3** - added CommonJS and Bower support

bower.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "jQuery-ajaxTransport-XDomainRequest",
3+
"version": "1.0.3",
4+
"main": "jquery.xdomainrequest.min.js",
5+
"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+.",
6+
"license": "MIT",
7+
"ignore": [
8+
"jQuery.XDomainRequest.js",
9+
"LICENSE.txt",
10+
"README.md"
11+
],
12+
"dependencies": {
13+
"jquery": ">=1.5"
14+
}
15+
}

jQuery.XDomainRequest.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery-ajaxTransport-XDomainRequest - v1.0.2 - 2014-05-02
2+
* jQuery-ajaxTransport-XDomainRequest - v1.0.3 - 2014-06-06
33
* https://github.com/MoonScript/jQuery-ajaxTransport-XDomainRequest
44
* Copyright (c) 2014 Jason Moon (@JSONMOON)
55
* Licensed MIT (/blob/master/LICENSE.txt)

jquery.xdomainrequest.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
{
2-
"name": "jquery-xdomainrequest",
3-
"version": "1.0.2",
4-
"description": "jQuery ajaxTransport extension that uses XDomainRequest for IE8+",
2+
"name": "jQuery-ajaxTransport-XDomainRequest",
3+
"version": "1.0.3",
4+
"main": "jquery.xdomainrequest.min.js",
5+
"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+.",
6+
"license": "MIT",
7+
"ignore": [
8+
"jQuery.XDomainRequest.js",
9+
"LICENSE.txt",
10+
"README.md"
11+
],
512
"dependencies": {
6-
"jquery": ">=1.5.0"
7-
},
8-
"main": "jQuery.XDomainRequest.js"
9-
}
13+
"jquery": ">=1.5"
14+
}
15+
}

0 commit comments

Comments
 (0)