diff options
author | Xavier Noria <fxn@hashref.com> | 2011-05-02 00:59:57 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-05-04 10:33:53 +0200 |
commit | d9c39c3ae9aa9d0f50a4b557781be39e39e5b752 (patch) | |
tree | feab3d5b27ae177f71cdcd043aadb5d8cb6bbf23 /railties/guides/source | |
parent | 5d2cdb190ad4eb35ab78180b2fd2e72a3d7a61f7 (diff) | |
download | rails-d9c39c3ae9aa9d0f50a4b557781be39e39e5b752.tar.gz rails-d9c39c3ae9aa9d0f50a4b557781be39e39e5b752.tar.bz2 rails-d9c39c3ae9aa9d0f50a4b557781be39e39e5b752.zip |
restores the -j option, but now it accepts the name of any library
If passed "foo", a gem "foo-rails" is added to the Gemfile
and "foo" and "foo_ujs" are required in the application
JavaScript manifest.
Diffstat (limited to 'railties/guides/source')
-rw-r--r-- | railties/guides/source/action_view_overview.textile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/railties/guides/source/action_view_overview.textile b/railties/guides/source/action_view_overview.textile index 9e59383315..2b2c197f46 100644 --- a/railties/guides/source/action_view_overview.textile +++ b/railties/guides/source/action_view_overview.textile @@ -1301,8 +1301,6 @@ h4. JavaScriptHelper Provides functionality for working with JavaScript in your views. -Rails includes by default the jQuery JavaScript library. If you wish to use these libraries and they are in your asset pipeline, or otherwise 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 Returns a button that'll trigger a JavaScript function using the onclick handler. Examples: |