@schibsted/account-sdk-browser 5.0.1-beta.7 → 5.0.1-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es5/global.js +3 -3
- package/es5/global.js.map +1 -1
- package/es5/global.min.js +1 -1
- package/es5/global.min.js.map +1 -1
- package/es5/identity.js +3 -3
- package/es5/identity.js.map +1 -1
- package/es5/identity.min.js +1 -1
- package/es5/identity.min.js.map +1 -1
- package/es5/index.js +3 -3
- package/es5/index.js.map +1 -1
- package/es5/index.min.js +1 -1
- package/es5/index.min.js.map +1 -1
- package/es5/monetization.js +1 -1
- package/es5/monetization.js.map +1 -1
- package/es5/monetization.min.js +1 -1
- package/es5/monetization.min.js.map +1 -1
- package/package.json +1 -1
- package/src/identity.js +2 -3
- package/src/version.js +1 -1
package/package.json
CHANGED
package/src/identity.js
CHANGED
|
@@ -674,12 +674,11 @@ export class Identity extends EventEmitter {
|
|
|
674
674
|
this._hasSessionInProgress = _getSession()
|
|
675
675
|
.then(
|
|
676
676
|
sessionData => {
|
|
677
|
-
this._hasSessionInProgress = false;
|
|
678
|
-
this._unblockSessionCallByTab();
|
|
679
|
-
|
|
680
677
|
if (isUrl(sessionData)) {
|
|
681
678
|
return this.window.location.href = sessionData;
|
|
682
679
|
}
|
|
680
|
+
this._hasSessionInProgress = false;
|
|
681
|
+
this._unblockSessionCallByTab();
|
|
683
682
|
|
|
684
683
|
return sessionData;
|
|
685
684
|
},
|
package/src/version.js
CHANGED