aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorErik St. Martin <alakriti@gmail.com>2010-01-24 14:32:55 -0500
committerStefan Penner <stefan.penner@gmail.com>2010-01-27 12:44:34 -0600
commit06dd23d67133601f2639695a0fadab81213f6200 (patch)
tree03f6c2784bf5c87e0240b91df9c7743876d7b88c /actionpack/lib
parentd9af0dfac4c4935097671ff0d8b21876ff6c019a (diff)
downloadrails-06dd23d67133601f2639695a0fadab81213f6200.tar.gz
rails-06dd23d67133601f2639695a0fadab81213f6200.tar.bz2
rails-06dd23d67133601f2639695a0fadab81213f6200.zip
removing Prototype inline js for attributes for :with and :condition, it now is free form js that can be placed there, also moved :submit out into AjaxHelper, updated tests to reflect changes
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_view/helpers/ajax_helper.rb28
1 files changed, 14 insertions, 14 deletions
diff --git a/actionpack/lib/action_view/helpers/ajax_helper.rb b/actionpack/lib/action_view/helpers/ajax_helper.rb
index fac7b8c44b..b29dc50c8d 100644
--- a/actionpack/lib/action_view/helpers/ajax_helper.rb
+++ b/actionpack/lib/action_view/helpers/ajax_helper.rb
@@ -503,6 +503,10 @@ module ActionView
attributes.merge!(extract_request_attributes!(options))
attributes["data-remote"] = true
+ if submit = options.delete(:submit)
+ attributes["data-submit"] = submit
+ end
+
attributes
end
@@ -563,12 +567,13 @@ module ActionView
def link_to_remote(name, options, html_options = {})
set_callbacks(options, html_options)
- set_conditions(options, html_options)
+ set_with_and_condition_attributes(options, html_options)
super
end
def button_to_remote(name, options = {}, html_options = {})
set_callbacks(options, html_options)
+ set_with_and_condition_attributes(options, html_options)
super
end
@@ -581,7 +586,7 @@ module ActionView
def observe_field(name, options = {})
html = {}
- set_conditions(options, html)
+ set_with_and_condition_attributes(options, html)
options.merge!(:callbacks => html)
super
end
@@ -599,18 +604,13 @@ module ActionView
end
end
- def set_conditions(options, html)
- #TODO: Remove all references to prototype - BR
- if options.delete(:form)
- html["data-parameters"] = 'Form.serialize(this)'
- elsif submit = options.delete(:submit)
- html["data-parameters"] = "Form.serialize('#{submit}')"
- elsif with = options.delete(:with)
- if with !~ /[\{=(.]/
- html["data-with"] = "'#{with}=' + encodeURIComponent(value)"
- else
- html["data-with"] = with
- end
+ def set_with_and_condition_attributes(options, html)
+ if with = options.delete(:with)
+ html["data-with"] = with
+ end
+
+ if condition = options.delete(:condition)
+ html["data-condition"] = condition
end
end
end