aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/configuring.textile
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2011-03-27 22:23:32 +0200
committerXavier Noria <fxn@hashref.com>2011-04-13 13:24:32 +0200
commitd8f23ca627df85b33fe8db87db5483c10b62bfe6 (patch)
treea100e01ee7876d8b6b1fff67d2bae61f1646caa8 /railties/guides/source/configuring.textile
parent7c9d91f53eba513a7fb79fb9b01da2fa324c461f (diff)
downloadrails-d8f23ca627df85b33fe8db87db5483c10b62bfe6.tar.gz
rails-d8f23ca627df85b33fe8db87db5483c10b62bfe6.tar.bz2
rails-d8f23ca627df85b33fe8db87db5483c10b62bfe6.zip
removes debug_rjs from ActionView::Base
Diffstat (limited to 'railties/guides/source/configuring.textile')
-rw-r--r--railties/guides/source/configuring.textile2
1 files changed, 0 insertions, 2 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile
index 9ca567129b..53460b8c36 100644
--- a/railties/guides/source/configuring.textile
+++ b/railties/guides/source/configuring.textile
@@ -291,8 +291,6 @@ h4. Configuring Action View
There are only a few configuration options for Action View, starting with four on +ActionView::Base+:
-* +config.action_view.debug_rjs+ specifies whether RJS responses should be wrapped in a try/catch block that alerts the caught exception (and then re-raises it). The default is +false+.
-
* +config.action_view.field_error_proc+ provides an HTML generator for displaying errors that come from Active Record. The default is <tt>Proc.new{ |html_tag, instance| %Q(%&lt;div class=&quot;field_with_errors&quot;&gt;#{html_tag}&lt;/div&gt;).html_safe }</tt>
* +config.action_view.default_form_builder+ tells Rails which form builder to use by default. The default is +ActionView::Helpers::FormBuilder+.