diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-10-04 14:03:32 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-10-04 14:03:32 -0700 |
commit | 53124c2ffd11c11e0515a28e8700b020c03847f1 (patch) | |
tree | 6961cfb86d39a2f85638652162ed1a16010f516d /src | |
parent | dad96791a8197d4bc824cff706621fe0ee382d3e (diff) | |
download | DotNetOpenAuth-53124c2ffd11c11e0515a28e8700b020c03847f1.zip DotNetOpenAuth-53124c2ffd11c11e0515a28e8700b020c03847f1.tar.gz DotNetOpenAuth-53124c2ffd11c11e0515a28e8700b020c03847f1.tar.bz2 |
Fixed window status message at completion of authentication to display the right message for OPs that do not support delegated identifiers.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.js b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.js index dabe60e..a2cf8e2 100644 --- a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.js +++ b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.js @@ -184,7 +184,7 @@ function initAjaxOpenId(box, openid_logo_url, dotnetopenid_logo_url, spinner_url box.dnoi_internal.success_icon.style.visibility = 'visible'; box.dnoi_internal.success_icon.title = box.dnoi_internal.success_icon.originalTitle.replace('{0}', authenticatedAs); box.title = box.dnoi_internal.claimedIdentifier; - window.status = "Authenticated as " + box.value; + window.status = "Authenticated as " + authenticatedAs; } else if (state == "setup") { var opLogo = box.dnoi_internal.deriveOPFavIcon(); if (opLogo) { |