From 95d87823d4c9837e7a491fb4469869c5b2de5e05 Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Tue, 19 Oct 2010 22:59:03 +0200 Subject: rewords a little the RDoc of the tag helper --- actionpack/lib/action_view/helpers/tag_helper.rb | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'actionpack/lib') diff --git a/actionpack/lib/action_view/helpers/tag_helper.rb b/actionpack/lib/action_view/helpers/tag_helper.rb index 2f29c8f0e6..ee51617a2b 100644 --- a/actionpack/lib/action_view/helpers/tag_helper.rb +++ b/actionpack/lib/action_view/helpers/tag_helper.rb @@ -24,16 +24,17 @@ module ActionView # escaping. # # ==== Options + # You can use symbols or strings for the attribute names. + # # Use +true+ with boolean attributes that can render with no value, like # +disabled+ and +readonly+. # # HTML5 data-* attributes can be set with a single +data+ key # pointing to a hash of sub-attributes. # - # Sub-attribute keys may be strings or symbols. To play nicely with - # JavaScript conventions +dataset+ they will be dasherized so that a key - # +user_id+ would render as data-user-id and thus accessed as - # dataset.userId. + # To play nicely with JavaScript conventions sub-attributes are dasherized. + # For example, a key +user_id+ would render as data-user-id and + # thus accessed as dataset.userId. # # Values are encoded to JSON, with the exception of strings and symbols. # This may come in handy when using jQuery's HTML5-aware .data() -- cgit v1.2.3