Merge pull request #8280 from asanghi/fix_guide_field_with_error_proc

fix guide with field_with_error proc example
This commit is contained in:
Rafael Mendonça França 2012-11-20 14:59:50 -08:00
commit f042b4e88e
1 changed files with 6 additions and 2 deletions

View File

@ -953,8 +953,12 @@ Below is a simple example where we change the Rails behavior to always display t
```ruby
ActionView::Base.field_error_proc = Proc.new do |html_tag, instance|
errors = Array(instance.error_message).join(',')
%(#{html_tag}<span class="validation-error">&nbsp;#{errors}</span>).html_safe
if html_tag =~ /\<label/
html_tag
else
errors = Array(instance.error_message).join(',')
%(#{html_tag}<span class="validation-error">&nbsp;#{errors}</span>).html_safe
end
end
```