remove all tab indices

fixes #1835
This commit is contained in:
Carsten Otto 2015-05-14 13:41:01 +02:00
parent 556c68c2e6
commit 050b3c7ed9
13 changed files with 53 additions and 68 deletions

View file

@ -10,11 +10,11 @@ form_for(note, :html => {
<div id="error_status"><%= get_list_of_error_messages_for(note) %></div>
<%= f.hidden_field( "project_id" ) %>
<%= f.text_area( "body", "cols" => 70, "rows" => 15, "tabindex" => 1 ) %>
<%= f.text_area( "body", "cols" => 70, "rows" => 15) %>
<div class="submit_box">
<div class="widgets">
<button type="submit" class="positive" id="<%= dom_id(note, 'submit') %>" tabindex="15">
<button type="submit" class="positive" id="<%= dom_id(note, 'submit') %>">
<%=image_tag("accept.png", :alt => "") %>
<%= submit_text %>
</button>