aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/active_model_helper.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2010-05-31 13:48:47 -0500
committerDavid Heinemeier Hansson <david@loudthinking.com>2010-05-31 13:48:47 -0500
commitea037ff55791a33d24773efd380b734f733c2815 (patch)
tree338ee75045f724dabc089e8b167fe292c87ffcc8 /actionpack/lib/action_view/helpers/active_model_helper.rb
parent1854209bb3d06bc81034dfec4ef75412700eae74 (diff)
downloadrails-ea037ff55791a33d24773efd380b734f733c2815.tar.gz
rails-ea037ff55791a33d24773efd380b734f733c2815.tar.bz2
rails-ea037ff55791a33d24773efd380b734f733c2815.zip
Base options cant live in lazy loaded helpers as they then wont be available to set for config
Diffstat (limited to 'actionpack/lib/action_view/helpers/active_model_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/active_model_helper.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/actionpack/lib/action_view/helpers/active_model_helper.rb b/actionpack/lib/action_view/helpers/active_model_helper.rb
index 0cddd09eb0..8054de0af6 100644
--- a/actionpack/lib/action_view/helpers/active_model_helper.rb
+++ b/actionpack/lib/action_view/helpers/active_model_helper.rb
@@ -4,13 +4,6 @@ require 'active_support/core_ext/enumerable'
require 'active_support/core_ext/object/blank'
module ActionView
- ActiveSupport.on_load(:action_view) do
- class ActionView::Base
- @@field_error_proc = Proc.new{ |html_tag, instance| "<div class=\"field_with_errors\">#{html_tag}</div>".html_safe }
- cattr_accessor :field_error_proc
- end
- end
-
module Helpers
module ActiveModelHelper
%w(input form error_messages_for error_message_on).each do |method|