Changed loginUtils.js to the head and change comment for fading error alerts to fade IN

This commit is contained in:
mb863 2011-01-14 22:00:30 +00:00
parent 2aee2e581c
commit d7209cf2d8
2 changed files with 4 additions and 4 deletions

View file

@ -8,10 +8,10 @@ $(document).ready(function(){
// focus on email or newpassword field
$('.focus').focus();
// fade out error alerts
// fade in error alerts
$('section#error-alert').css('display', 'none').fadeIn(1500);
// fade out fash-message when user log out
// fade in fash-message when user log out
$('section#flash-message').css('display', 'none').fadeIn(1500);
});