diff options
author | Michael Koziarski <michael@koziarski.com> | 2009-06-09 20:10:21 +1200 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2009-06-09 20:10:21 +1200 |
commit | 99803b7cdba13345d267127e14809fc389a0e0c2 (patch) | |
tree | aee8c00acc5da954fdbb02ae207bbc051a37c5d8 /actionpack/lib | |
parent | 41a94048e55e082f373e19d9fcee311860aaba9e (diff) | |
download | rails-99803b7cdba13345d267127e14809fc389a0e0c2.tar.gz rails-99803b7cdba13345d267127e14809fc389a0e0c2.tar.bz2 rails-99803b7cdba13345d267127e14809fc389a0e0c2.zip |
Pull autoload fix from 2-3-stable
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_view/helpers.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers.rb b/actionpack/lib/action_view/helpers.rb index 693ab7c2e0..97fa2d80e9 100644 --- a/actionpack/lib/action_view/helpers.rb +++ b/actionpack/lib/action_view/helpers.rb @@ -11,7 +11,7 @@ module ActionView #:nodoc: autoload :FormHelper, 'action_view/helpers/form_helper' autoload :FormOptionsHelper, 'action_view/helpers/form_options_helper' autoload :FormTagHelper, 'action_view/helpers/form_tag_helper' - autoload :JavascriptHelper, 'action_view/helpers/javascript_helper' + autoload :JavaScriptHelper, 'action_view/helpers/javascript_helper' autoload :NumberHelper, 'action_view/helpers/number_helper' autoload :PrototypeHelper, 'action_view/helpers/prototype_helper' autoload :RecordIdentificationHelper, 'action_view/helpers/record_identification_helper' |