diff options
author | Mike Gunderloy <MikeG1@larkfarm.com> | 2008-10-27 11:16:18 -0500 |
---|---|---|
committer | Mike Gunderloy <MikeG1@larkfarm.com> | 2008-10-27 11:16:18 -0500 |
commit | f7b6e70b71c7198fe8cf2c5e254d9e7dd27f5a74 (patch) | |
tree | 16465bdc62f3b25d6b33ba1b5a86586f2e2404bc /railties/doc/guides/source | |
parent | fbe1e32008198a38f036eeed558eedc1d2d9c7a7 (diff) | |
download | rails-f7b6e70b71c7198fe8cf2c5e254d9e7dd27f5a74.tar.gz rails-f7b6e70b71c7198fe8cf2c5e254d9e7dd27f5a74.tar.bz2 rails-f7b6e70b71c7198fe8cf2c5e254d9e7dd27f5a74.zip |
Fix bug in layout guide, regenerate guides html
Diffstat (limited to 'railties/doc/guides/source')
-rw-r--r-- | railties/doc/guides/source/layouts_and_rendering.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/doc/guides/source/layouts_and_rendering.txt b/railties/doc/guides/source/layouts_and_rendering.txt index 3d970b60ce..0c8ed43e26 100644 --- a/railties/doc/guides/source/layouts_and_rendering.txt +++ b/railties/doc/guides/source/layouts_and_rendering.txt @@ -534,7 +534,7 @@ You can supply the +:recursive+ option to load files in subfolders of +public/ja [source, ruby] ------------------------------------------------------- -<%= javascript_include_tag :all, :recursive %> +<%= javascript_include_tag :all, :recursive => true %> ------------------------------------------------------- If you're loading multiple javascript files, you can create a better user experience by combining multiple files into a single download. To make this happen in production, specify +:cache => true+ in your +javascript_include_tag+: @@ -601,7 +601,7 @@ You can supply the +:recursive+ option to link files in subfolders of +public/st [source, ruby] ------------------------------------------------------- -<%= stylesheet_link_tag :all, :recursive %> +<%= stylesheet_link_tag :all, :recursive => true %> ------------------------------------------------------- If you're loading multiple CSS files, you can create a better user experience by combining multiple files into a single download. To make this happen in production, specify +:cache => true+ in your +stylesheet_link_tag+: |