//small fix on BO login

This commit is contained in:
vAugagneur
2012-03-14 10:49:23 +00:00
parent 5534a52edf
commit ba52d26efc
3 changed files with 52 additions and 43 deletions
+10 -6
View File
@@ -4,15 +4,19 @@ $(document).ready(function() {
function displayForgotPassword() {
$('#error').hide();
$("#login").flip({
direction: 'tb',
color: '#FFF',
content: $('#forgot_password')
})
$('#login_form').fadeOut('fast', function () {
$("#forgot_password").fadeIn('fast');
});
}
function displayLogin() {
$('#error').hide();
$('#login').revertFlip();
$('#forgot_password').fadeOut('fast', function () {
$("#login_form").fadeIn('fast');
});
return false;
}