diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-06-30 05:58:40 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-06-30 05:58:40 +0000 |
commit | a90598b4581987297e425914096d6bf134957d17 (patch) | |
tree | 4713582168cc06876ff911ec878da3afbf1b6f93 /actionpack/lib/action_view | |
parent | 8a145b251afb2e043669cb2bf74826070f98f66d (diff) | |
download | rails-a90598b4581987297e425914096d6bf134957d17.tar.gz rails-a90598b4581987297e425914096d6bf134957d17.tar.bz2 rails-a90598b4581987297e425914096d6bf134957d17.zip |
Wrong variable name used in observe_field #1551
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1568 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r-- | actionpack/lib/action_view/helpers/javascript_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/javascript_helper.rb b/actionpack/lib/action_view/helpers/javascript_helper.rb index 607b8fe0f9..c506757119 100644 --- a/actionpack/lib/action_view/helpers/javascript_helper.rb +++ b/actionpack/lib/action_view/helpers/javascript_helper.rb @@ -237,7 +237,7 @@ module ActionView if options[:frequency] build_observer('Form.Element.Observer', field_id, options) else - build_observer('Form.Element.EventObserver', form_id, options) + build_observer('Form.Element.EventObserver', field_id, options) end end |