From b1ff3b48e27f85bce35857c02d1d90297bb0db5f Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Wed, 28 Feb 2007 22:18:50 +0000 Subject: Set the original button value in an attribute of the button when using the :disable_with key with submit_tag git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6270 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_view/helpers/form_tag_helper.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'actionpack/lib/action_view/helpers/form_tag_helper.rb') diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb index 342c457917..56479dfa04 100644 --- a/actionpack/lib/action_view/helpers/form_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb @@ -142,6 +142,7 @@ module ActionView if disable_with = options.delete("disable_with") options["onclick"] = [ + "this.setAttribute('originalValue', this.value)", "this.disabled=true", "this.value='#{disable_with}'", "#{options["onclick"]}", -- cgit v1.2.3