Use default tabindex

[Delivers #19500489]
This commit is contained in:
Erik Michaels-Ober 2011-10-10 15:52:58 -07:00
parent 31dd0721f3
commit f022b12101
5 changed files with 30 additions and 30 deletions

View File

@ -5,11 +5,11 @@
= t("defaults.tagline") = t("defaults.tagline")
= form_for :address, :html => {:id => "address_form"} do |f| = form_for :address, :html => {:id => "address_form"} do |f|
= label_tag "city_state", t("labels.city_state"), :id => "city_state_label" = label_tag "city_state", t("labels.city_state"), :id => "city_state_label"
= select_tag "city_state", "<option value=\"#{t("defaults.city")}\" selected=\"selected\">#{t("defaults.city")}</option>".html_safe, :tabindex => 10 = select_tag "city_state", "<option value=\"#{t("defaults.city")}\" selected=\"selected\">#{t("defaults.city")}</option>".html_safe
= label_tag "address", t("labels.address"), :id => "address_label" = label_tag "address", t("labels.address"), :id => "address_label"
= text_field_tag "address", params[:address], :tabindex => 11 = text_field_tag "address", params[:address]
= hidden_field_tag "limit", params[:limit] || 40 = hidden_field_tag "limit", params[:limit] || 40
= submit_tag t("buttons.find", :thing => t("defaults.thing").pluralize), :tabindex => 12 = submit_tag t("buttons.find", :thing => t("defaults.thing").pluralize)
#logos #logos
= image_tag "logos/cfa.png", :alt => t("sponsors.cfa"), :title => t("sponsors.cfa") = image_tag "logos/cfa.png", :alt => t("sponsors.cfa"), :title => t("sponsors.cfa")
= image_tag "logos/boston.png", :alt => t("sponsors.city"), :title => t("sponsors.city") = image_tag "logos/boston.png", :alt => t("sponsors.city"), :title => t("sponsors.city")

View File

@ -3,5 +3,5 @@
= t("titles.edit_profile") = t("titles.edit_profile")
= f.hidden_field "reset_password_token" = f.hidden_field "reset_password_token"
= f.label "password", t("labels.password_new"), :id => "user_password_label" = f.label "password", t("labels.password_new"), :id => "user_password_label"
= f.password_field "password", :tabindex => 1 = f.password_field "password"
= f.submit t("buttons.change_password"), :tabindex => 2 = f.submit t("buttons.change_password")

View File

@ -5,43 +5,43 @@
= f.label "email", t("labels.email"), :id => "user_email_label" = f.label "email", t("labels.email"), :id => "user_email_label"
%em %em
= image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private") = image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private")
= f.text_field "email", :value => params[:user] ? params[:user][:email] : nil, :tabindex => 1 = f.text_field "email", :value => params[:user] ? params[:user][:email] : nil
= f.label "new" , radio_button_tag("user", "new", true, :tabindex => 2).html_safe + t("labels.user_new") = f.label "new" , radio_button_tag("user", "new", true).html_safe + t("labels.user_new")
= f.label "existing", radio_button_tag("user", "existing").html_safe + t("labels.user_existing") = f.label "existing", radio_button_tag("user", "existing").html_safe + t("labels.user_existing")
#user_sign_up_fields #user_sign_up_fields
= f.label "name", t("labels.name"), :id => "user_name_label" = f.label "name", t("labels.name"), :id => "user_name_label"
%em %em
= t("captions.public") = t("captions.public")
= f.text_field "name", :tabindex => 3 = f.text_field "name"
= f.label "organization", t("labels.organization"), :id => "user_organization_label" = f.label "organization", t("labels.organization"), :id => "user_organization_label"
%em %em
= t("captions.public") = t("captions.public")
= f.text_field "organization", :tabindex => 4 = f.text_field "organization"
= f.label "voice_number", t("labels.voice_number"), :id => "user_voice_number_label" = f.label "voice_number", t("labels.voice_number"), :id => "user_voice_number_label"
%em %em
= image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private") = image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private")
= f.text_field "voice_number", :tabindex => 5 = f.text_field "voice_number"
= f.label "sms_number", t("labels.sms_number"), :id => "user_sms_number_label" = f.label "sms_number", t("labels.sms_number"), :id => "user_sms_number_label"
%em %em
= image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private") = image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private")
= f.text_field "sms_number", :tabindex => 6 = f.text_field "sms_number"
= f.label "password_confirmation", t("labels.password_choose"), :id => "user_password_confirmation_label" = f.label "password_confirmation", t("labels.password_choose"), :id => "user_password_confirmation_label"
%em %em
= image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private") = image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private")
= f.password_field "password_confirmation", :tabindex => 7 = f.password_field "password_confirmation"
= f.submit t("buttons.sign_up"), :tabindex => 8 = f.submit t("buttons.sign_up")
%p %p
= t("defaults.tos", :tos => link_to(t("titles.tos"), tos_path, :tabindex => 3, :id => "tos_link")).html_safe = t("defaults.tos", :tos => link_to(t("titles.tos"), tos_path, :id => "tos_link")).html_safe
#user_sign_in_fields{:style => "display: none;"} #user_sign_in_fields{:style => "display: none;"}
= f.label "password", t("labels.password"), :id => "user_password_label" = f.label "password", t("labels.password"), :id => "user_password_label"
%em %em
= image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private") = image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private")
= f.password_field "password", :tabindex => 0 = f.password_field "password"
= f.label "remember_me", (f.check_box("remember_me", :checked => true, :tabindex => 0).html_safe + t("labels.remember_me")), :id => "user_remember_me_label" = f.label "remember_me", (f.check_box("remember_me", :checked => true).html_safe + t("labels.remember_me")), :id => "user_remember_me_label"
= f.submit t("buttons.sign_in"), :tabindex => 0 = f.submit t("buttons.sign_in")
%p %p
= link_to t("links.forgot_password"), "#", :id => "user_forgot_password_link", :tabindex => 0 = link_to t("links.forgot_password"), "#", :id => "user_forgot_password_link"
#user_forgot_password_fields{:style => "display: none;"} #user_forgot_password_fields{:style => "display: none;"}
= f.submit t("buttons.email_password"), :tabindex => 0 = f.submit t("buttons.email_password")
%p %p
= link_to t("links.remembered_password"), "#", :id => "user_remembered_password_link", :tabindex => 0 = link_to t("links.remembered_password"), "#", :id => "user_remembered_password_link"

View File

@ -4,7 +4,7 @@
= f.hidden_field "id" = f.hidden_field "id"
= f.hidden_field "user_id", :value => current_user.id = f.hidden_field "user_id", :value => current_user.id
= f.label "name", t("labels.name_thing", :thing => t("defaults.thing")), :id => "thing_name_label" = f.label "name", t("labels.name_thing", :thing => t("defaults.thing")), :id => "thing_name_label"
= f.text_field "name", :tabindex => 1 = f.text_field "name"
= f.submit t("buttons.adopt"), :tabindex => 2 = f.submit t("buttons.adopt")
= render :partial => 'users/edit_profile' = render :partial => 'users/edit_profile'
= render :partial => 'sessions/sign_out' = render :partial => 'sessions/sign_out'

View File

@ -5,30 +5,30 @@
= f.label "email", t("labels.email"), :id => "user_email_label" = f.label "email", t("labels.email"), :id => "user_email_label"
%em %em
= image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private") = image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private")
= f.text_field "email", :tabindex => 1 = f.text_field "email"
= f.label "name", t("labels.name"), :id => "user_name_label" = f.label "name", t("labels.name"), :id => "user_name_label"
%em %em
= t("captions.public") = t("captions.public")
= f.text_field "name", :tabindex => 2 = f.text_field "name"
= f.label "organization", t("labels.organization"), :id => "user_organization_label" = f.label "organization", t("labels.organization"), :id => "user_organization_label"
%em %em
= t("captions.public") = t("captions.public")
= f.text_field "organization", :tabindex => 3 = f.text_field "organization"
= f.label "voice_number", t("labels.voice_number"), :id => "user_voice_number_label" = f.label "voice_number", t("labels.voice_number"), :id => "user_voice_number_label"
%em %em
= image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private") = image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private")
= f.text_field "voice_number", :tabindex => 4 = f.text_field "voice_number"
= f.label "sms_number", t("labels.sms_number"), :id => "user_sms_number_label" = f.label "sms_number", t("labels.sms_number"), :id => "user_sms_number_label"
%em %em
= image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private") = image_tag "lock.svg", :class => "lock", :alt => t("captions.private"), :title => t("captions.private")
= f.text_field "sms_number", :tabindex => 5 = f.text_field "sms_number"
= f.label "password", t("labels.password_new"), :id => "user_password_label" = f.label "password", t("labels.password_new"), :id => "user_password_label"
%em %em
= t("captions.password") = t("captions.password")
= f.password_field "password", :tabindex => 6 = f.password_field "password"
= f.label "current_password", t("labels.current_password"), :id => "user_current_password_label" = f.label "current_password", t("labels.current_password"), :id => "user_current_password_label"
%em %em
= t("captions.current_password") = t("captions.current_password")
= f.password_field "current_password", :tabindex => 7 = f.password_field "current_password"
= f.submit t("buttons.update"), :tabindex => 8 = f.submit t("buttons.update")
= render :partial => 'things/back' = render :partial => 'things/back'