diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-03-22 12:41:34 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-03-22 12:41:34 +0000 |
commit | 6ad1b895f4a7a113ad372ce485ac20c762cc3c2c (patch) | |
tree | 2f65df256783d1d1b302bcdde207ccd0e72e7a89 /actionpack/lib | |
parent | 4e60fe3ef3474834a9880f3cdd2a47f8efa99bc5 (diff) | |
download | rails-6ad1b895f4a7a113ad372ce485ac20c762cc3c2c.tar.gz rails-6ad1b895f4a7a113ad372ce485ac20c762cc3c2c.tar.bz2 rails-6ad1b895f4a7a113ad372ce485ac20c762cc3c2c.zip |
Updated more documentation
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@975 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_view/helpers/javascript_helper.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/javascript_helper.rb b/actionpack/lib/action_view/helpers/javascript_helper.rb index 99b2fc1166..079ec736a1 100644 --- a/actionpack/lib/action_view/helpers/javascript_helper.rb +++ b/actionpack/lib/action_view/helpers/javascript_helper.rb @@ -11,6 +11,9 @@ module ActionView # the Javascript support functions in a <script> block) or reference the Javascript library using # <%= javascript_include_tag "prototype" %> (which looks for the library in /javascripts/prototype.js). The latter is # recommended as the browser can then cache the library instead of fetching all the functions anew on every request. + # + # If you're the visual type, there's an Ajax movie[http://www.rubyonrails.com/media/video/rails-ajax.mov] demonstrating + # the use of form_remote_tag. module JavascriptHelper unless const_defined? :CALLBACKS CALLBACKS = [:uninitialized, :loading, :loaded, :interactive, :complete] |