Changeset 2802

Show
Ignore:
Timestamp:
11/12/08 09:48:24 (2 months ago)
Author:
moeffju
Message:

Fix collateral changes :)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/htdocs/system/admin/login.php

    r2801 r2802  
    6565        password_label = $('label[for=habari_password]'); 
    6666        // to fix autofill issues, we need to check the password field on every keyup 
    67         $('#habari_username').keyup( function(){ 
     67        $('#habari_username').keyup( function() { 
    6868            setTimeout( "labeler.check( password_label );", 10 );  
    69         } ).click( function(){ 
    70             setTimeout( "labeler.check( password_label );", 10 );  
     69        } ).click( function() { 
     70            setTimeout( "labeler.check( password_label );", 50 );  
    7171        } ); 
     72        // for autofill without user input 
     73        setTimeout( function(){ labeler.check( password_label ); }, 10 ); 
    7274    }) 
    7375  </script>