Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit 867af58

Browse files
Fixing issue #95
1 parent 10e67cb commit 867af58

35 files changed

+35
-27
lines changed

dist/rx.dom.compat.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,7 @@
398398
function getCORSRequest() {
399399
var xhr = new root.XMLHttpRequest();
400400
if ('withCredentials' in xhr) {
401+
xhr.withCredentials = true;
401402
return xhr;
402403
} else if (!!root.XDomainRequest) {
403404
return new XDomainRequest();

dist/rx.dom.compat.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.dom.compat.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.dom.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@
257257
function getCORSRequest() {
258258
var xhr = new root.XMLHttpRequest();
259259
if ('withCredentials' in xhr) {
260+
xhr.withCredentials = true;
260261
return xhr;
261262
} else if (!!root.XDomainRequest) {
262263
return new XDomainRequest();

dist/rx.dom.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.dom.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/lite-ajax-compat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rx-lite-dom-ajax-compat",
33
"title": "The Reactive Extensions Bindings for the DOM Ajax, Lite Compat Edition",
44
"description": "Library for creating Ajax requests using RxJS for older browsers",
5-
"version": "7.0.2",
5+
"version": "7.0.3",
66
"homepage": "https://github.com/Reactive-Extensions/RxJS-DOM",
77
"author": {
88
"name": "Microsoft",

modules/lite-ajax-compat/rx.lite.dom.ajax.compat.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@
8787
function getCORSRequest() {
8888
var xhr = new root.XMLHttpRequest();
8989
if ('withCredentials' in xhr) {
90+
xhr.withCredentials = true;
9091
return xhr;
9192
} else if (!!root.XDomainRequest) {
9293
return new XDomainRequest();

modules/lite-ajax-compat/rx.lite.dom.ajax.compat.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)