diff options
Diffstat (limited to 'projecttemplates/WebFormsRelyingParty')
-rw-r--r-- | projecttemplates/WebFormsRelyingParty/scripts/LoginPopup.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/projecttemplates/WebFormsRelyingParty/scripts/LoginPopup.js b/projecttemplates/WebFormsRelyingParty/scripts/LoginPopup.js index 4af2b4b..5464a85 100644 --- a/projecttemplates/WebFormsRelyingParty/scripts/LoginPopup.js +++ b/projecttemplates/WebFormsRelyingParty/scripts/LoginPopup.js @@ -34,7 +34,8 @@ var openid = new window.OpenIdIdentifier(identifier); if (openid) { openid.login(function(discoveryResult, respondingEndpoint, extensionResponses) { - window.postLoginAssertion(respondingEndpoint.response, window.parent.location.href); + alert("Woot! We've logged you in as " + respondingEndpoint.claimedIdentifier); + //window.postLoginAssertion(respondingEndpoint.response, window.parent.location.href); }); } else { trace('doLogin called without an identifier.'); |