debugging guide: revises the section on debugging RJS

This commit is contained in:
Xavier Noria
2010-08-17 13:19:00 +02:00
parent c11ba424e7
commit 4b21dfe9a7

View File

@@ -96,22 +96,24 @@ Will be rendered as follows:
Title: Rails debugging guide
</pre>
h4. Debugging JavaScript
h4. Debugging RJS
Rails has built-in support to debug RJS to activate it, set +ActionView::Base.debug_rjs+ to _true_. This will specify that RJS responses should be wrapped in a try/catch block that displays the caught exception using +alert()+ (and then re-raises it).
Rails has optional built-in support to debug RJS. When enabled, responses are wrapped in a try/catch block that displays the caught exception using +alert()+, and then re-raises it.
To enable it, add the following in the +Rails::Initializer do |config|+ block inside +environment.rb+:
The flag to enable RJS debugging in your configuration files is +config.action_view.debug_rjs+:
<ruby>
config.action_view[:debug_rjs] = true
config.action_view.debug_rjs = true
</ruby>
Or, at any time, set +ActionView::Base.debug_rjs+ to _true_:
or at any time setting +ActionView::Base.debug_rjs+:
<ruby>
ActionView::Base.debug_rjs = true
</ruby>
It is enabled by default in development mode, and disabled in the rest.
TIP: For more information on debugging JavaScript, refer to "Firebug":http://getfirebug.com/, the popular debugger for Firefox.
h3. The Logger