aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/javascript_helper.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-04-17 07:52:50 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-04-17 07:52:50 +0000
commitc3ca5ab7a80702b63dc77748043f8a72ff1529a5 (patch)
tree263f39f3710d6f384d10a281d521fce69c219fb7 /actionpack/lib/action_view/helpers/javascript_helper.rb
parent6acda705dcee10cb31aae5ab8f6442f8006e4b37 (diff)
downloadrails-c3ca5ab7a80702b63dc77748043f8a72ff1529a5.tar.gz
rails-c3ca5ab7a80702b63dc77748043f8a72ff1529a5.tar.bz2
rails-c3ca5ab7a80702b63dc77748043f8a72ff1529a5.zip
Added Element.toggle, Element.show, and Element.hide to the prototype javascript library. Toggle.display has been deprecated, but will still work #992 [Lucas Carlson]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1181 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view/helpers/javascript_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/javascript_helper.rb22
1 files changed, 10 insertions, 12 deletions
diff --git a/actionpack/lib/action_view/helpers/javascript_helper.rb b/actionpack/lib/action_view/helpers/javascript_helper.rb
index 9e91cd189e..7e11e09c1d 100644
--- a/actionpack/lib/action_view/helpers/javascript_helper.rb
+++ b/actionpack/lib/action_view/helpers/javascript_helper.rb
@@ -95,16 +95,16 @@ module ActionView
# Returns a button input tag that will submit form using XMLHttpRequest in tghe background instead of regular
# reloading POST arrangement. <tt>options</tt> argument is the same as in <tt>form_remote_tag</tt>
- def submit_to_remote(name,value,options = {})
- options[:with] = 'Form.serialize(this.form)'
+ def submit_to_remote(name, value, options = {})
+ options[:with] = 'Form.serialize(this.form)'
- options[:html] ||= {}
- options[:html][:type] = 'button'
- options[:html][:onclick] = "#{remote_function(options)}; return false;"
- options[:html][:name] = name
- options[:html][:value] = value
-
- tag("input", options[:html], false)
+ options[:html] ||= {}
+ options[:html][:type] = 'button'
+ options[:html][:onclick] = "#{remote_function(options)}; return false;"
+ options[:html][:name] = name
+ options[:html][:value] = value
+
+ tag("input", options[:html], false)
end
def remote_function(options) #:nodoc: for now
@@ -134,9 +134,7 @@ module ActionView
# create remote <script> links.
def define_javascript_functions
javascript = '<script type="text/javascript">'
- Dir.glob(File.join(JAVASCRIPT_PATH, '*')).each do |filename|
- javascript << "\n" << IO.read(filename)
- end
+ Dir.glob(File.join(JAVASCRIPT_PATH, '*')).each { |filename| javascript << "\n" << IO.read(filename) }
javascript << '</script>'
end