tracks/app/views/todos/show.m.erb
Reinier Balt 6e8ea419f9 add accesskey to submit button in mobile view
in mobile view when you edit an action, pressing # will submit changes
2008-08-19 22:24:00 +02:00

5 lines
288 B
Text

<% form_tag formatted_todo_path(@todo, :m), :method => :put do %>
<%= render :partial => 'edit_mobile', :locals => { :parent_container_type => "show_mobile" } %>
<p><input type="submit" value="Update" tabindex="6" accesskey="#" /></p>
<% end -%>
<%= link_to "Cancel", @return_path %>