diff --git a/app/views/todos/_edit_form.html.erb b/app/views/todos/_edit_form.html.erb
index 4444aca0..66b5bd62 100644
--- a/app/views/todos/_edit_form.html.erb
+++ b/app/views/todos/_edit_form.html.erb
@@ -15,27 +15,27 @@
<%= content_tag(:input, "", :type=>"hidden", :name=>"_tag_name", :value=>"#{@tag_name}") if @tag_name -%>
- <%= t.text_field( "description", "size" => 30, "tabindex" => next_tab_index, "maxlength" => 100) %>
+ <%= t.text_field( "description", "size" => 30, "maxlength" => 100) %>
- <%= t.text_area( "notes", "cols" => 29, "rows" => 4, "tabindex" => next_tab_index) %>
+ <%= t.text_area( "notes", "cols" => 29, "rows" => 4) %>
- <%= text_field_tag 'tag_list', tag_list_text, :id => dom_id(@todo, 'tag_list'), :size => 30, :tabindex => next_tab_index %>
+ <%= text_field_tag 'tag_list', tag_list_text, :id => dom_id(@todo, 'tag_list'), :size => 30 %>
-
- <%= text_area_tag( "todo[multiple_todos]", "", :cols => 29, :rows => 6, :tabindex => next_tab_index) %>
+ <%= text_area_tag( "todo[multiple_todos]", "", :cols => 29, :rows => 6 ) %>
-
+
-
+
<%= hidden_field_tag "initial_tag_list", @initial_tags%>
- <%= text_field_tag "multi_tag_list", @initial_tags, :name=>:tag_list, :size => 30, :tabindex => next_tab_index %>
+ <%= text_field_tag "multi_tag_list", @initial_tags, :name=>:tag_list, :size => 30 %>
<%= content_tag("div", "", :id => "tag_list_auto_complete", :class => "auto_complete") %>
- <%= check_box_tag('todos_sequential', 'true', false, {:tabindex => next_tab_index}) %>
+ <%= check_box_tag('todos_sequential', 'true', false) %>
-
+
<%= image_tag("accept.png", :alt => "") %><%= t('shared.add_actions') %>
diff --git a/app/views/todos/_new_todo_form.html.erb b/app/views/todos/_new_todo_form.html.erb
index bc616a86..b9bb4b4a 100644
--- a/app/views/todos/_new_todo_form.html.erb
+++ b/app/views/todos/_new_todo_form.html.erb
@@ -12,31 +12,31 @@
<%= image_tag("blank.png", :title =>t('todos.star_action'), :class => "todo_star", :style=> "float: right")%>
- <%= t.text_field("description", "size" => 30, "tabindex" => next_tab_index, "maxlength" => 100, "autocomplete" => "off", :autofocus => 1) %>
+ <%= t.text_field("description", "size" => 30, "maxlength" => 100, "autocomplete" => "off", :autofocus => 1) %>
- <%= t.text_area("notes", "cols" => 29, "rows" => 6, "tabindex" => next_tab_index) %>
+ <%= t.text_area("notes", "cols" => 29, "rows" => 6) %>
-
+
-
+
<%= hidden_field_tag "initial_tag_list", @initial_tags%>
- <%= text_field_tag "tag_list", @initial_tags, :size => 30, :tabindex => next_tab_index %>
+ <%= text_field_tag "tag_list", @initial_tags, :size => 30 %>
<%= content_tag("div", "", :id => "tag_list_auto_complete", :class => "auto_complete") %>
- <%= t.text_field("due", "size" => 12, "class" => "Date", "tabindex" => next_tab_index, "autocomplete" => "off") %>
+ <%= t.text_field("due", "size" => 12, "class" => "Date", "autocomplete" => "off") %>
- <%= t.text_field("show_from", "size" => 12, "class" => "Date", "tabindex" => next_tab_index, "autocomplete" => "off") %>
+ <%= t.text_field("show_from", "size" => 12, "class" => "Date", "autocomplete" => "off") %>
@@ -46,7 +46,7 @@
- <%= text_field_tag "predecessor_input", nil, :size => 30, :tabindex => next_tab_index %>
+ <%= text_field_tag "predecessor_input", nil, :size => 30 %>
<%= hidden_field_tag "predecessor_list", ""%>
@@ -55,7 +55,7 @@
-
+
<%= image_tag("accept.png", :alt => "") + t('shared.add_action') %>
diff --git a/app/views/todos/edit.m.erb b/app/views/todos/edit.m.erb
index 8f8d98a7..9b3678d5 100644
--- a/app/views/todos/edit.m.erb
+++ b/app/views/todos/edit.m.erb
@@ -1,5 +1,5 @@
<%= form_tag todo_path(@todo, :format => 'm'), :name => 'mobileEdit', :method => :put do %>
<%= render :partial => 'edit_form', :locals => { :parent_container_type => "show_mobile" } %>
-
+
<% end -%>
<%= link_to t('common.cancel'), @return_path %>
diff --git a/app/views/todos/new.m.erb b/app/views/todos/new.m.erb
index 028b9301..8cfc46cf 100644
--- a/app/views/todos/new.m.erb
+++ b/app/views/todos/new.m.erb
@@ -1,5 +1,5 @@
<%= form_tag todos_path(:format => 'm'), :method => :post do %>
<%= render :partial => 'edit_form' %>
-
+
<% end -%>
<%= link_to t('common.back'), @return_path %>