public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Correct code example in dom_id docs.  [#437 state:resolved]
Andrew Kaspick (author)
Mon Jun 16 23:24:58 -0700 2008
jeremy (committer)
Tue Jun 17 00:32:37 -0700 2008
commit  322f3eacf9279ae7c9f3ce2560f241c7377005dc
tree    b56c618e0b79ed514449dcf1b072048f7c76559e
parent  8e74a434b8f13bd1697ad556c9fd1ef0217e594e
...
66
67
68
69
 
70
71
72
73
74
 
75
76
77
...
66
67
68
 
69
70
71
72
73
 
74
75
76
77
0
@@ -66,12 +66,12 @@ module ActionController
0
     # The DOM id convention is to use the singular form of an object or class with the id following an underscore.
0
     # If no id is found, prefix with "new_" instead. Examples:
0
     #
0
-    #   dom_id(Post.new(:id => 45)) # => "post_45"
0
+    #   dom_id(Post.find(45))       # => "post_45"
0
     #   dom_id(Post.new)            # => "new_post"
0
     #
0
     # If you need to address multiple instances of the same class in the same view, you can prefix the dom_id:
0
     #
0
-    #   dom_id(Post.new(:id => 45), :edit) # => "edit_post_45"
0
+    #   dom_id(Post.find(45), :edit) # => "edit_post_45"
0
     def dom_id(record, prefix = nil) 
0
       if record_id = record.id
0
         "#{dom_class(record, prefix)}#{JOIN}#{record_id}"

Comments