Skip to content

Commit 5f25670

Browse files
author
Jason Moon
committed
Send userOptions.data if it exists
1 parent 925b570 commit 5f25670

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

jQuery.XDomainRequest.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,7 @@ if (!jQuery.support.cors && window.XDomainRequest) {
7272
});
7373
};
7474
xdr.open(options.type, options.url);
75-
//xdr.send(userOptions.data);
76-
xdr.send();
75+
xdr.send(userOptions.data||null);
7776
},
7877
abort: function(){
7978
if (xdr) {

0 commit comments

Comments
 (0)