aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2009-06-09 20:10:21 +1200
committerMichael Koziarski <michael@koziarski.com>2009-06-09 20:10:21 +1200
commit99803b7cdba13345d267127e14809fc389a0e0c2 (patch)
treeaee8c00acc5da954fdbb02ae207bbc051a37c5d8 /actionpack/lib/action_view
parent41a94048e55e082f373e19d9fcee311860aaba9e (diff)
downloadrails-99803b7cdba13345d267127e14809fc389a0e0c2.tar.gz
rails-99803b7cdba13345d267127e14809fc389a0e0c2.tar.bz2
rails-99803b7cdba13345d267127e14809fc389a0e0c2.zip
Pull autoload fix from 2-3-stable
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r--actionpack/lib/action_view/helpers.rb2
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'