diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-09-29 02:05:07 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-09-29 02:05:07 -0300 |
commit | 0131c70175095379afd6cdc4a2ed05237791f87a (patch) | |
tree | 371d058a41f20ac2c1e5ff9691a045fb538508d7 | |
parent | 1855312db964aa6b9ae7d2b3a3e5d9f54da1d163 (diff) | |
parent | 9331f00229205c3a018af92cb50907d4fc87ecdc (diff) | |
download | rails-0131c70175095379afd6cdc4a2ed05237791f87a.tar.gz rails-0131c70175095379afd6cdc4a2ed05237791f87a.tar.bz2 rails-0131c70175095379afd6cdc4a2ed05237791f87a.zip |
Merge pull request #21661 from akshay-vishnoi/submit_tag_tests
Fix - Prevent adding of `data-disable-with` option twice in html.
-rw-r--r-- | actionview/lib/action_view/helpers/form_tag_helper.rb | 2 | ||||
-rw-r--r-- | actionview/test/template/form_tag_helper_test.rb | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/form_tag_helper.rb b/actionview/lib/action_view/helpers/form_tag_helper.rb index af684e05c6..0e8127e29e 100644 --- a/actionview/lib/action_view/helpers/form_tag_helper.rb +++ b/actionview/lib/action_view/helpers/form_tag_helper.rb @@ -450,9 +450,9 @@ module ActionView disable_with_text ||= value.clone tag_options.deep_merge!("data" => { "disable_with" => disable_with_text }) else - tag_options.delete("data-disable-with") tag_options["data"].delete(:disable_with) if tag_options["data"] end + tag_options.delete("data-disable-with") end tag :input, tag_options diff --git a/actionview/test/template/form_tag_helper_test.rb b/actionview/test/template/form_tag_helper_test.rb index 0e02332a0e..8db35d02e1 100644 --- a/actionview/test/template/form_tag_helper_test.rb +++ b/actionview/test/template/form_tag_helper_test.rb @@ -485,6 +485,14 @@ class FormTagHelperTest < ActionView::TestCase ) end + def test_submit_tag_doesnt_have_data_disable_with_twice + assert_equal( + %(<input type="submit" name="commit" value="Save" data-confirm="Are you sure?" data-disable-with="Processing..." />), + submit_tag("Save", { "data-disable-with" => "Processing...", "data-confirm" => "Are you sure?" }) + ) + end + + def test_button_tag assert_dom_equal( %(<button name="button" type="submit">Button</button>), |