Created
November 3, 2017 15:07
-
-
Save porfidev/bc00cf411b2eb1027c7a147a32647813 to your computer and use it in GitHub Desktop.
ngZone on Observable
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return Observable.create(observer => { | |
this.ngZone.run(() => { | |
params.callback = (result) => { | |
if (result.status === 'FAIL') { | |
observer.error(result.errorDetails || result.errorMessage); | |
} else { | |
observer.next(result); | |
observer.complete(); | |
} | |
}; | |
gigya.accounts.login(params); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment