11 lines
292 B
JavaScript
11 lines
292 B
JavaScript
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
|
|
|
$(document).ready(function(){
|
|
|
|
// login form is hidden by default; use JavaScript to reveal
|
|
$("#formLogin").removeClass("hidden");
|
|
|
|
// focus on email or newpassword field
|
|
$('.focus').focus();
|
|
|
|
});
|