11 lines
291 B
JavaScript
11 lines
291 B
JavaScript
|
(function () {
|
||
|
if (success) {
|
||
|
window.opener.Account.authenticatedWithGoogleCallback(authenticatedWithGoogleUntil);
|
||
|
window.close();
|
||
|
} else {
|
||
|
document.getElementById('closeWindowButton').onclick = function () {
|
||
|
window.close();
|
||
|
}
|
||
|
}
|
||
|
})();
|