From 5f808b865cc0bbb10af7733cc0c4da3add572a95 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 8 Apr 2010 12:17:46 -0700 Subject: Consistently use lowercase instead of camelCase for all JS class names in Rails --- .../lib/action_view/helpers/form_tag_helper.rb | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'actionpack/lib/action_view/helpers/form_tag_helper.rb') diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb index 67b4e842b1..388d6813ef 100644 --- a/actionpack/lib/action_view/helpers/form_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb @@ -199,8 +199,8 @@ module ActionView # file_field_tag 'attachment' # # => # - # file_field_tag 'avatar', :class => 'profile-input' - # # => + # file_field_tag 'avatar', :class => 'profile_input' + # # => # # file_field_tag 'picture', :disabled => true # # => @@ -244,8 +244,8 @@ module ActionView # password_field_tag 'confirm_pass', nil, :disabled => true # # => # - # password_field_tag 'pin', '1234', :maxlength => 4, :size => 6, :class => "pin-input" - # # => + # password_field_tag 'pin', '1234', :maxlength => 4, :size => 6, :class => "pin_input" + # # => def password_field_tag(name = "password", value = nil, options = {}) text_field_tag(name, value, options.update("type" => "password")) end @@ -374,8 +374,8 @@ module ActionView # submit_tag nil, :class => "form_submit" # # => # - # submit_tag "Edit", :disable_with => "Editing...", :class => "edit-button" - # # => "Editing...", :class => "edit_button" + # # => # # submit_tag "Save", :confirm => "Are you sure?" @@ -414,11 +414,11 @@ module ActionView # image_submit_tag("purchase.png", :disabled => true) # # => # - # image_submit_tag("search.png", :class => 'search-button') - # # => + # image_submit_tag("search.png", :class => 'search_button') + # # => # - # image_submit_tag("agree.png", :disabled => true, :class => "agree-disagree-button") - # # => + # image_submit_tag("agree.png", :disabled => true, :class => "agree_disagree_button") + # # => def image_submit_tag(source, options = {}) options.stringify_keys! -- cgit v1.2.3