//small fix on BO login

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14141 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
vAugagneur
2012-03-14 10:49:23 +00:00
parent a949f73f74
commit b217bc4ad8
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;
}