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-07-13 14:03:24 +00:00
|
|
|
// login form is hidden by default; use JavaScript to reveal
|
|
|
|
$("#formLogin").removeClass("hidden");
|
|
|
|
|
|
|
|
// focus on email or newpassword field
|
|
|
|
$('.focus').focus();
|
2010-07-09 19:36:41 +00:00
|
|
|
|
|
|
|
});
|