Show Login-Button when user+pw are autocompleted, fixes oc-1068

This commit is contained in:
Arthur Schiwon 2012-08-03 13:15:15 +02:00
parent aa60771736
commit e899c9989e

View file

@ -402,11 +402,7 @@ $(document).ready(function(){
//use infield labels
$("label.infield").inFieldLabels();
// hide log in button etc. when form fields not filled
$('#submit').hide();
$('#remember_login').hide();
$('#remember_login+label').hide();
$('input#user, input#password').keyup(function() {
checkShowCredentials = function() {
var empty = false;
$('input#user, input#password').each(function() {
if ($(this).val() == '') {
@ -422,7 +418,10 @@ $(document).ready(function(){
$('#remember_login').show();
$('#remember_login+label').fadeIn();
}
});
}
// hide log in button etc. when form fields not filled
checkShowCredentials();
$('input#user, input#password').keyup(checkShowCredentials);
$('#settings #expand').keydown(function(event) {
if (event.which == 13 || event.which == 32) {