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

Commit 6bc158c

Browse files
Fixing IE compat issues
1 parent b6ebf84 commit 6bc158c

24 files changed

+26
-26
lines changed

dist/rx.all.compat.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -7507,7 +7507,7 @@ Rx.Observable.prototype.flatMapLatest = function(selector, resultSelector, thisA
75077507
}
75087508

75097509
function isGenerator(obj) {
7510-
return isFunction (obj.next) && isFunction (obj.throw);
7510+
return isFunction (obj.next) && isFunction (obj['throw']);
75117511
}
75127512

75137513
function isGeneratorFunction(obj) {
@@ -8597,7 +8597,7 @@ Observable.fromNodeCallback = function (fn, ctx, selector) {
85978597
function getObservable() {
85988598
if (!hasObservable) {
85998599
hasObservable = true;
8600-
observable = source.finally(function() { hasObservable = false; }).publish().refCount();
8600+
observable = source['finally'](function() { hasObservable = false; }).publish().refCount();
86018601
}
86028602
return observable;
86038603
}

dist/rx.all.compat.map

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

dist/rx.all.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -7248,7 +7248,7 @@ Rx.Observable.prototype.flatMapLatest = function(selector, resultSelector, thisA
72487248
}
72497249

72507250
function isGenerator(obj) {
7251-
return isFunction (obj.next) && isFunction (obj.throw);
7251+
return isFunction (obj.next) && isFunction (obj['throw']);
72527252
}
72537253

72547254
function isGeneratorFunction(obj) {
@@ -8338,7 +8338,7 @@ Observable.fromNodeCallback = function (fn, ctx, selector) {
83388338
function getObservable() {
83398339
if (!hasObservable) {
83408340
hasObservable = true;
8341-
observable = source.finally(function() { hasObservable = false; }).publish().refCount();
8341+
observable = source['finally'](function() { hasObservable = false; }).publish().refCount();
83428342
}
83438343
return observable;
83448344
}

dist/rx.all.map

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

dist/rx.async.compat.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@
198198
}
199199

200200
function isGenerator(obj) {
201-
return isFunction (obj.next) && isFunction (obj.throw);
201+
return isFunction (obj.next) && isFunction (obj['throw']);
202202
}
203203

204204
function isGeneratorFunction(obj) {

dist/rx.async.compat.map

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

dist/rx.async.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@
198198
}
199199

200200
function isGenerator(obj) {
201-
return isFunction (obj.next) && isFunction (obj.throw);
201+
return isFunction (obj.next) && isFunction (obj['throw']);
202202
}
203203

204204
function isGeneratorFunction(obj) {

dist/rx.async.map

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

dist/rx.binding.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@
546546
function getObservable() {
547547
if (!hasObservable) {
548548
hasObservable = true;
549-
observable = source.finally(function() { hasObservable = false; }).publish().refCount();
549+
observable = source['finally'](function() { hasObservable = false; }).publish().refCount();
550550
}
551551
return observable;
552552
}

dist/rx.binding.map

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

dist/rx.lite.extras.compat.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ var ObserveOnObservable = (function (__super__) {
788788
function getObservable() {
789789
if (!hasObservable) {
790790
hasObservable = true;
791-
observable = source.finally(function() { hasObservable = false; }).publish().refCount();
791+
observable = source['finally'](function() { hasObservable = false; }).publish().refCount();
792792
}
793793
return observable;
794794
}

dist/rx.lite.extras.compat.map

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

dist/rx.lite.extras.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ var ObserveOnObservable = (function (__super__) {
788788
function getObservable() {
789789
if (!hasObservable) {
790790
hasObservable = true;
791-
observable = source.finally(function() { hasObservable = false; }).publish().refCount();
791+
observable = source['finally'](function() { hasObservable = false; }).publish().refCount();
792792
}
793793
return observable;
794794
}

dist/rx.lite.extras.map

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

modules/rx-lite-async-compat/rx.lite.async.compat.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175
}
176176

177177
function isGenerator(obj) {
178-
return isFunction (obj.next) && isFunction (obj.throw);
178+
return isFunction (obj.next) && isFunction (obj['throw']);
179179
}
180180

181181
function isGeneratorFunction(obj) {

modules/rx-lite-async-compat/rx.lite.async.compat.map

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

modules/rx-lite-async/rx.lite.async.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175
}
176176

177177
function isGenerator(obj) {
178-
return isFunction (obj.next) && isFunction (obj.throw);
178+
return isFunction (obj.next) && isFunction (obj['throw']);
179179
}
180180

181181
function isGeneratorFunction(obj) {

0 commit comments

Comments
 (0)