Merge branch 'master' of git.daplie.com:OAuth3/org.oauth3 into daplie-installer-css-overrides
This commit is contained in:
commit
21cc9df926
|
@ -72,6 +72,9 @@ $(function () {
|
||||||
window.alert("'redirect_uri' must exist and should point to '" + clientParams.redirect_uri + "'");
|
window.alert("'redirect_uri' must exist and should point to '" + clientParams.redirect_uri + "'");
|
||||||
console.error("'redirect_uri' must exist and should point to '" + clientParams.redirect_uri + "'");
|
console.error("'redirect_uri' must exist and should point to '" + clientParams.redirect_uri + "'");
|
||||||
}
|
}
|
||||||
|
if (clientParams.subject) {
|
||||||
|
console.log('clientParams.subject: ', clientParams.subject);
|
||||||
|
}
|
||||||
clientParams.referrer = window.document.referrer;
|
clientParams.referrer = window.document.referrer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -397,6 +400,10 @@ $(function () {
|
||||||
+ '&error_uri=' + encodeURIComponent('https://oauth3.org/docs/errors/#E_IFRAME_DENIED');
|
+ '&error_uri=' + encodeURIComponent('https://oauth3.org/docs/errors/#E_IFRAME_DENIED');
|
||||||
location.href = callbackUrl;
|
location.href = callbackUrl;
|
||||||
}
|
}
|
||||||
|
if (clientParams.subject) {
|
||||||
|
$('.js-oauth3-email').val(clientParams.subject);
|
||||||
|
$('.js-authn-show').prop('disabled', false);
|
||||||
|
}
|
||||||
$('.js-userid-container').show();
|
$('.js-userid-container').show();
|
||||||
}).then(function () {
|
}).then(function () {
|
||||||
//$('body').addClass('in');
|
//$('body').addClass('in');
|
||||||
|
|
Loading…
Reference in New Issue