diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-10-19 13:08:17 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-10-19 13:08:17 -0700 |
commit | 7f73c9758a20ba4a6d88b4aa0ba492e64f713efa (patch) | |
tree | 2e69635a9793c43bba73801916d539784c1e1314 /projecttemplates/WebFormsRelyingParty | |
parent | 77f5f2a1a38964459c4c819ac9c6cda3fec85f12 (diff) | |
download | DotNetOpenAuth-7f73c9758a20ba4a6d88b4aa0ba492e64f713efa.zip DotNetOpenAuth-7f73c9758a20ba4a6d88b4aa0ba492e64f713efa.tar.gz DotNetOpenAuth-7f73c9758a20ba4a6d88b4aa0ba492e64f713efa.tar.bz2 |
Got rid of the slide effect for now, since it causes huge pauses after the OpenID button is clicked, and causes preloaded discovery results to be reloaded (overwriting auth results).
Diffstat (limited to 'projecttemplates/WebFormsRelyingParty')
-rw-r--r-- | projecttemplates/WebFormsRelyingParty/scripts/LoginPopup.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/projecttemplates/WebFormsRelyingParty/scripts/LoginPopup.js b/projecttemplates/WebFormsRelyingParty/scripts/LoginPopup.js index aac48e4..a03f9e9 100644 --- a/projecttemplates/WebFormsRelyingParty/scripts/LoginPopup.js +++ b/projecttemplates/WebFormsRelyingParty/scripts/LoginPopup.js @@ -93,7 +93,7 @@ // Be sure to hide the openid_identifier text box unless the OpenID button is selected. if ($(this)[0] != $('#OpenIDButton')[0] && $('#OpenIDForm').is(':visible')) { - $('#OpenIDForm').hide('slide', { direction: 'up' }, 1000); + $('#OpenIDForm').hide('slow'); } // If the user clicked on a button that has the "we're ready to log you in immediately", @@ -117,7 +117,7 @@ }); $('#OpenIDButton').click(function() { if ($('#OpenIDForm').is(':hidden')) { - $('#OpenIDForm').show('slide', { direction: 'up' }, 1000, function() { + $('#OpenIDForm').show('slow', function() { $('#openid_identifier').focus(); }); } else { |