From 02625c9c962a868ee7d1a0903d5aaead290ec0ef Mon Sep 17 00:00:00 2001 From: Michael Koziarski Date: Sat, 26 Jan 2008 05:11:09 +0000 Subject: Correct documentation for dom_id [jbarnette] Closes #10775 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8734 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/record_identifier.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'actionpack') diff --git a/actionpack/lib/action_controller/record_identifier.rb b/actionpack/lib/action_controller/record_identifier.rb index bdf2753a79..22dbc8bbc5 100644 --- a/actionpack/lib/action_controller/record_identifier.rb +++ b/actionpack/lib/action_controller/record_identifier.rb @@ -53,15 +53,15 @@ module ActionController [ prefix, singular_class_name(record_or_class) ].compact * '_' end - # The DOM class convention is to use the singular form of an object or class with the id following an underscore. + # The DOM id convention is to use the singular form of an object or class with the id following an underscore. # If no id is found, prefix with "new_" instead. Examples: # - # dom_class(Post.new(:id => 45)) # => "post_45" - # dom_class(Post.new) # => "new_post" + # dom_id(Post.new(:id => 45)) # => "post_45" + # dom_id(Post.new) # => "new_post" # # If you need to address multiple instances of the same class in the same view, you can prefix the dom_id: # - # dom_class(Post.new(:id => 45), :edit) # => "edit_post_45" + # dom_id(Post.new(:id => 45), :edit) # => "edit_post_45" def dom_id(record, prefix = nil) prefix ||= 'new' unless record.id [ prefix, singular_class_name(record), record.id ].compact * '_' -- cgit v1.2.3