diff options
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 { |