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

Diff for: dist/rx.dom.compat.js

+1
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();

Diff for: dist/rx.dom.compat.map

+1-1
Large diffs are not rendered by default.

Diff for: dist/rx.dom.compat.min.js

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

Diff for: dist/rx.dom.js

+1
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();

Diff for: dist/rx.dom.map

+1-1
Large diffs are not rendered by default.

Diff for: dist/rx.dom.min.js

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

Diff for: modules/lite-ajax-compat/package.json

+1-1
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",

Diff for: modules/lite-ajax-compat/rx.lite.dom.ajax.compat.js

+1
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();

Diff for: modules/lite-ajax-compat/rx.lite.dom.ajax.compat.map

+1-1
Original file line numberDiff line numberDiff line change

0 commit comments

Comments
 (0)