Skip to content

Commit

Permalink
Merge pull request #84 from roccivic/autoselect-login-form
Browse files Browse the repository at this point in the history
Autoselect username input on cookie login page
  • Loading branch information
nijel committed Aug 6, 2012
2 parents 23e04ae + d3c0682 commit fdfffab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -43,6 +43,7 @@ VerboseMultiSubmit, ReplaceHelpImg
+ Add Ajax support to Fast filter in order to search the term in all database tables
- bug #3535015 [navi] DbFilter, TableFilter clear button hidden on Chrome
+ rfe #3528994 [interface] Allow wrapping possibly long values in replication-status table
+ [interface] Autoselect username input on cookie login page

3.5.3.0 (not yet released)
- bug #3539044 [interface] Browse mode "Show" button gives blank page if no results anymore
Expand Down
4 changes: 3 additions & 1 deletion js/functions.js
Expand Up @@ -3871,5 +3871,7 @@ $(function () {
* Reveal the login form to users with JS enabled
*/
$(function () {
$('.js-show').show();
var $loginform = $('#loginform');
$loginform.find('.js-show').show();
$loginform.find('#input_username').select();
});

0 comments on commit fdfffab

Please sign in to comment.