diff options
author | Jaime Iniesta <jaimeiniesta@gmail.com> | 2010-04-01 16:36:58 +0200 |
---|---|---|
committer | Jaime Iniesta <jaimeiniesta@gmail.com> | 2010-04-01 16:36:58 +0200 |
commit | cd9721791f824f61dfe1650310aec925b3a1f559 (patch) | |
tree | 5fb32ca21600da6a3ab457d3dad4d7e2c02baf2a /railties/guides | |
parent | 150835b6afc6ddc6725522b7c2572b0391d5b56d (diff) | |
download | rails-cd9721791f824f61dfe1650310aec925b3a1f559.tar.gz rails-cd9721791f824f61dfe1650310aec925b3a1f559.tar.bz2 rails-cd9721791f824f61dfe1650310aec925b3a1f559.zip |
Fix unescaped <% and %> on action_view_overview guide
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/action_view_overview.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/action_view_overview.textile b/railties/guides/source/action_view_overview.textile index a517193cea..2fa89bb4c2 100644 --- a/railties/guides/source/action_view_overview.textile +++ b/railties/guides/source/action_view_overview.textile @@ -1079,7 +1079,7 @@ h4. JavaScriptHelper Provides functionality for working with JavaScript in your views. -Rails includes the Prototype JavaScript framework and the Scriptaculous JavaScript controls and visual effects library. If you wish to use these libraries and their helpers, make sure +<%= javascript_include_tag :defaults, :cache => true %>+ is in the HEAD section of your page. This function will include the necessary JavaScript files Rails generated in the public/javascripts directory. +Rails includes the Prototype JavaScript framework and the Scriptaculous JavaScript controls and visual effects library. If you wish to use these libraries and their helpers, make sure +<%= javascript_include_tag :defaults, :cache => true %>+ is in the HEAD section of your page. This function will include the necessary JavaScript files Rails generated in the public/javascripts directory. h5. button_to_function |