aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-09-12 22:07:18 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-09-12 22:07:18 +0000
commit89840c40ceb54855fa81e641586abba04c3e35cb (patch)
tree5edb8e29b83f952c9cb8919d87797f88861a96c0 /actionpack/lib/action_view/helpers
parent7661c2b50aa5ab6d497d6e41cf53545136c4bd37 (diff)
downloadrails-89840c40ceb54855fa81e641586abba04c3e35cb.tar.gz
rails-89840c40ceb54855fa81e641586abba04c3e35cb.tar.bz2
rails-89840c40ceb54855fa81e641586abba04c3e35cb.zip
Load helpers in alphabetical order for consistency. Resolve cyclic javascript_helper dependency. Closes #6132, closes #6178.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5095 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view/helpers')
-rw-r--r--actionpack/lib/action_view/helpers/prototype_helper.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/prototype_helper.rb b/actionpack/lib/action_view/helpers/prototype_helper.rb
index d5e6f039aa..322b7e7978 100644
--- a/actionpack/lib/action_view/helpers/prototype_helper.rb
+++ b/actionpack/lib/action_view/helpers/prototype_helper.rb
@@ -1,4 +1,3 @@
-require File.dirname(__FILE__) + '/javascript_helper'
require 'set'
module ActionView
@@ -926,3 +925,5 @@ module ActionView
end
end
end
+
+require File.dirname(__FILE__) + '/javascript_helper'