diff options
author | Marc-Andre Lafortune <github@marc-andre.ca> | 2011-11-22 15:16:23 -0500 |
---|---|---|
committer | Marc-Andre Lafortune <github@marc-andre.ca> | 2011-11-22 15:16:23 -0500 |
commit | 05e02deb686fc21f99c2d1dcf3abc987796e0e19 (patch) | |
tree | 17dc76fab9aa65ce038232a180dbca5859fd5396 /actionpack/lib | |
parent | cb06727b6cb7310808f5b9ce1bf254055806ba80 (diff) | |
download | rails-05e02deb686fc21f99c2d1dcf3abc987796e0e19.tar.gz rails-05e02deb686fc21f99c2d1dcf3abc987796e0e19.tar.bz2 rails-05e02deb686fc21f99c2d1dcf3abc987796e0e19.zip |
Make explicit the default media when calling stylesheet_tag and change the default generators.
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb b/actionpack/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb index 343153c8c5..41958c6559 100644 --- a/actionpack/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb +++ b/actionpack/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb @@ -68,6 +68,9 @@ module ActionView # Returns a stylesheet link tag for the sources specified as arguments. If # you don't specify an extension, <tt>.css</tt> will be appended automatically. # You can modify the link attributes by passing a hash as the last argument. + # For historical reasons, the 'media' attribute will always be present and defaults + # to "screen", so you must explicitely set it to "all" for the stylesheet(s) to + # apply to all media types. # # ==== Examples # stylesheet_link_tag "style" # => |