2010-07-09 19:36:41 +00:00
|
|
|
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
|
|
|
|
|
|
|
$(document).ready(function(){
|
|
|
|
|
2010-11-19 20:54:16 +00:00
|
|
|
// login form is hidden by default; use JavaScript to reveal
|
2011-01-16 19:26:15 +00:00
|
|
|
$("#login").removeClass('hidden');
|
2010-07-13 14:03:24 +00:00
|
|
|
|
2010-11-19 20:54:16 +00:00
|
|
|
// focus on email or newpassword field
|
|
|
|
$('.focus').focus();
|
2010-11-22 15:59:11 +00:00
|
|
|
|
2011-01-14 22:00:30 +00:00
|
|
|
// fade in error alerts
|
2010-12-21 15:11:50 +00:00
|
|
|
$('section#error-alert').css('display', 'none').fadeIn(1500);
|
|
|
|
|
2011-01-14 22:00:30 +00:00
|
|
|
// fade in fash-message when user log out
|
2010-12-21 15:11:50 +00:00
|
|
|
$('section#flash-message').css('display', 'none').fadeIn(1500);
|
2011-01-17 22:46:42 +00:00
|
|
|
|
2010-12-21 15:11:50 +00:00
|
|
|
});
|