diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2010-03-15 23:05:12 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-03-15 23:05:12 -0700 |
commit | 9e1e95f70af3c566190f47ee7a52fd49f785ec12 (patch) | |
tree | a328141538b199b5c22a21f2f20ce8128bc3d07e | |
parent | b9c48f519fbeee8fda3c989204619648f794fb02 (diff) | |
download | rails-9e1e95f70af3c566190f47ee7a52fd49f785ec12.tar.gz rails-9e1e95f70af3c566190f47ee7a52fd49f785ec12.tar.bz2 rails-9e1e95f70af3c566190f47ee7a52fd49f785ec12.zip |
link_to_remote -> link_to :remote => true
-rw-r--r-- | actionpack/lib/action_view/helpers/capture_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/capture_helper.rb b/actionpack/lib/action_view/helpers/capture_helper.rb index b64dc1533f..42a67756e4 100644 --- a/actionpack/lib/action_view/helpers/capture_helper.rb +++ b/actionpack/lib/action_view/helpers/capture_helper.rb @@ -77,7 +77,7 @@ module ActionView # # Then, in another view, you could to do something like this: # - # <%= link_to_remote 'Logout', :action => 'logout' %> + # <%= link_to 'Logout', :action => 'logout', :remote => true %> # # <% content_for :script do %> # <%= javascript_include_tag :defaults %> |