vitro/webapp/web/js/login/loginUtils.js

18 lines
414 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
$("#loginFormAndLinks").show();
// focus on email or newpassword field
$('.focus').focus();
// fade out error alerts
//$('#error-alert').css('display', 'none');
//$('#error-alert).fadeIn(500);
});