aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/README
diff options
context:
space:
mode:
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