Auto-focus nickname field on new user form

openid
Marcin Kulik 11 years ago
parent a2b0a637fa
commit 8dba31ce71

@ -15,4 +15,6 @@ $(function() {
$("input[data-behavior=auto-select]").click(function() {
this.select();
});
$('input[data-behavior=focus]:first').focus();
});

@ -7,7 +7,7 @@ section.supplimental
h3 Pick your username:
= simple_form_for @user, :url => user_path do |f|
= f.input :nickname, label: 'Username', required: true
= f.input :nickname, label: 'Username', required: true, input_html: { 'data-behavior' => 'focus' }
= f.button :submit
hr

Loading…
Cancel
Save