Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix commit messages #6

Merged
merged 18 commits into from
Feb 15, 2017
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
119e0d4
fix(timeout-spec): fix merge conflicts
trxcllnt Feb 15, 2017
fc86e5e
fix(Subscription): fold ChildSubscription logic into Subscriber to pr…
trxcllnt Feb 13, 2017
5a2901d
chore(publish): 5.1.1
benlesh Feb 13, 2017
ad27711
Ignore coverage
timruffles Feb 13, 2017
24de734
fix(subscribeToResult): accept array-like as result
mpodlasin Feb 12, 2017
aef558e
feat(AjaxObservable) : support 'PATCH' request type
herflis Feb 10, 2017
39f4009
chore(ajax.patch): Adds test for ajax.patch
jayphelps Feb 13, 2017
f38a27e
fix(merge): return Observable when called with single lowerCaseO
mpodlasin Feb 12, 2017
db72756
feat(webSocket): Add binaryType to config object
mpodlasin Feb 10, 2017
ad7dd69
fix(forkJoin): add type signature for single observable with selector
mpodlasin Feb 10, 2017
2b66fc4
chore(danger): update dangerfile to validate commit message
kwonoj Feb 9, 2017
0bbfdf2
fix(bindNodeCallback): emit undefined when callback has no success ar…
mpodlasin Feb 5, 2017
dc568da
fix(bindCallback): emit undefined when callback is without arguments
mpodlasin Feb 5, 2017
d59d733
chore(*): correctly scope disabled `max-line-length` tslint rule
gkalpak Jan 23, 2017
74dd235
fix(mergeAll): introduce variant support <T, R> for mergeMap
kwonoj Feb 14, 2017
b1bb0ce
feat(windowTime): maxWindowSize parameter in windowTime operator
mpodlasin Dec 12, 2016
42a886a
docs(ObservableInput): add ObservableInput and SubscribableOrPromise …
mpodlasin Feb 6, 2017
790a469
fix(timeoutWith): update timeoutWith to work with new Subscriber leak…
trxcllnt Feb 15, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(timeoutWith): update timeoutWith to work with new Subscriber leak…
… fix changes
  • Loading branch information
trxcllnt committed Feb 15, 2017
commit 790a469f9feae8e515e6053a464bd3860c286612
4 changes: 1 addition & 3 deletions src/operator/timeoutWith.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@ class TimeoutWithSubscriber<T, R> extends OuterSubscriber<T, R> {

private static dispatchTimeout<T, R>(subscriber: TimeoutWithSubscriber<T, R>): void {
const { withObservable } = subscriber;
subscriber.unsubscribe();
subscriber.closed = false;
subscriber.isStopped = false;
(<any> subscriber)._unsubscribeAndRecycle();
subscriber.add(subscribeToResult(subscriber, withObservable));
}

Expand Down