Actually focus username in login dropdown

This commit is contained in:
Holger Just 2012-01-04 18:31:05 +01:00
parent 0c87f611e9
commit dc5fd8bc10
1 changed files with 1 additions and 1 deletions

View File

@ -584,7 +584,7 @@ jQuery(document).ready(function($) {
// Focus the username field if the login field has opened
$("#nav-login").slideToggle(animationRate, function () {
if ($(this).parent().hasClass("open")) {
$("input#username").focus()
$("input#username-pulldown").focus()
}
});