diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-05-19 09:16:44 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-05-19 09:18:04 -0700 |
commit | 64535bb1adb14871e57442ed9a38c01dc57aa33b (patch) | |
tree | 2572780ca7972c719bfae06bf37e26100e9ebac1 | |
parent | 6a8ae49354ede5ff91b04e1616ccfcda5b8d1f46 (diff) | |
download | DotNetOpenAuth-64535bb1adb14871e57442ed9a38c01dc57aa33b.zip DotNetOpenAuth-64535bb1adb14871e57442ed9a38c01dc57aa33b.tar.gz DotNetOpenAuth-64535bb1adb14871e57442ed9a38c01dc57aa33b.tar.bz2 |
Fixed javascript error in the OpenIdAjaxTextBox control.
-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 fc6a68c..f9902cb 100644 --- a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.js +++ b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.js @@ -273,7 +273,7 @@ function initAjaxOpenId(box, openid_logo_url, dotnetopenid_logo_url, spinner_url box.dnoi_internal.claimedIdentifier = null; window.status = authenticationFailedToolTip; box.title = authenticationFailedToolTip; - } else if (state = '' || state == null) { + } else if (state == '' || state == null) { box.dnoi_internal.openid_logo.style.visibility = 'visible'; box.title = ''; box.dnoi_internal.claimedIdentifier = null; |