aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/README
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-22 12:41:34 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-22 12:41:34 +0000
commit6ad1b895f4a7a113ad372ce485ac20c762cc3c2c (patch)
tree2f65df256783d1d1b302bcdde207ccd0e72e7a89 /actionpack/README
parent4e60fe3ef3474834a9880f3cdd2a47f8efa99bc5 (diff)
downloadrails-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/README')
-rwxr-xr-xactionpack/README9
1 files changed, 9 insertions, 0 deletions
diff --git a/actionpack/README b/actionpack/README
index 5d928dfa70..7c7526a9e9 100755
--- a/actionpack/README
+++ b/actionpack/README
@@ -168,6 +168,15 @@ A short rundown of the major features:
{Learn more}[link:classes/ActionController/Base.html]
+* Javascript and Ajax integration.
+
+ link_to_function "Greeting", "alert('Hello world!')"
+ link_to_remote "Delete this post", :update => "posts",
+ :url => { :action => "destroy", :id => post.id }
+
+ {Learn more}[link:classes/ActionView/Helpers/JavascriptHelper.html]
+
+
* Easy testing of both controller and template result through TestRequest/Response
class LoginControllerTest < Test::Unit::TestCase