Changeset 2802
- Timestamp:
- 11/12/08 09:48:24 (2 months ago)
- Files:
-
- 1 modified
-
trunk/htdocs/system/admin/login.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/htdocs/system/admin/login.php
r2801 r2802 65 65 password_label = $('label[for=habari_password]'); 66 66 // to fix autofill issues, we need to check the password field on every keyup 67 $('#habari_username').keyup( function() {67 $('#habari_username').keyup( function() { 68 68 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 ); 71 71 } ); 72 // for autofill without user input 73 setTimeout( function(){ labeler.check( password_label ); }, 10 ); 72 74 }) 73 75 </script>
