]> source.dussan.org Git - redmine.git/commitdiff
Replace JQuery `.focus()` method with HTML `autofocus` attribute (#37482).
authorGo MAEDA <maeda@farend.jp>
Sat, 6 Aug 2022 05:00:28 +0000 (05:00 +0000)
committerGo MAEDA <maeda@farend.jp>
Sat, 6 Aug 2022 05:00:28 +0000 (05:00 +0000)
Patch by Go MAEDA.

git-svn-id: https://svn.redmine.org/redmine/trunk@21762 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/account/login.html.erb
app/views/sudo_mode/new.html.erb

index 38991ae60ddf2a127faa989ca699d3dcdefdd510..27878bc7e96a192baf2619fb5db6d52475a1ea49 100644 (file)
@@ -5,13 +5,13 @@
   <%= back_url_hidden_field_tag %>
   
   <label for="username"><%=l(:field_login)%></label>
-  <%= text_field_tag 'username', params[:username], :tabindex => '1' %>
+  <%= text_field_tag 'username', params[:username], :tabindex => '1', :autofocus => params[:username].blank? %>
   
   <label for="password">
     <%=l(:field_password)%>
     <%= link_to l(:label_password_lost), lost_password_path, :class => "lost_password" if Setting.lost_password? %>
   </label>
-  <%= password_field_tag 'password', nil, :tabindex => '2' %>
+  <%= password_field_tag 'password', nil, :tabindex => '2', :autofocus => params[:username].present? %>
   
   <% if Setting.autologin? %>
     <label for="autologin"><%= check_box_tag 'autologin', 1, false, :tabindex => 4 %> <%= l(:label_stay_logged_in) %></label>
@@ -22,9 +22,3 @@
 </div>
 
 <%= call_hook :view_account_login_bottom %>
-
-<% if params[:username].present? %>
-<%= javascript_tag "$('#password').focus();" %>
-<% else %>
-<%= javascript_tag "$('#username').focus();" %>
-<% end %>
index 6532dc4a9baedd7afdef9e66de1aadc12c58a88a..cd25ea1d6fc751122f462a7ebeca6887040a7212 100644 (file)
@@ -8,10 +8,9 @@
   <div class="box">
     <p>
       <label for="sudo_password"><%= l :field_password %><span class="required">*</span></label>
-      <%= password_field_tag :sudo_password, nil, size: 25 %>
+      <%= password_field_tag :sudo_password, nil, size: 25, autofocus: true %>
       </br><%= link_to l(:label_password_lost), lost_password_path, :class => "lost_password" if Setting.lost_password? %>
     </p>
   </div>
   <%= submit_tag l(:button_submit) %>
 <% end %>
-<%= javascript_tag "$('#sudo_password').focus();" %>