Skip to content

Commit

Permalink
Correct code example in dom_id docs. [#437 state:resolved]
Browse files Browse the repository at this point in the history
  • Loading branch information
akaspick authored and jeremy committed Jun 17, 2008
1 parent f1a1e55 commit 4d83e9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actionpack/lib/action_controller/record_identifier.rb
Expand Up @@ -66,12 +66,12 @@ def dom_class(record_or_class, prefix = nil)
# 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_id(Post.new(:id => 45)) # => "post_45"
# dom_id(Post.find(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_id(Post.new(:id => 45), :edit) # => "edit_post_45"
# dom_id(Post.find(45), :edit) # => "edit_post_45"
def dom_id(record, prefix = nil)
if record_id = record.id
"#{dom_class(record, prefix)}#{JOIN}#{record_id}"
Expand Down

0 comments on commit 4d83e9d

Please sign in to comment.