diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-03-27 19:42:54 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-03-27 19:42:54 +0000 |
commit | 0228975a4ecfaf81e8d8b8662abdc91ff67dbf42 (patch) | |
tree | f7b80faf06ce15c1589bcdbd223cdadbf03a95db /actionpack/lib/action_view | |
parent | 2a305949d756c054cee349c1ef3b39c6cf1496f8 (diff) | |
download | rails-0228975a4ecfaf81e8d8b8662abdc91ff67dbf42.tar.gz rails-0228975a4ecfaf81e8d8b8662abdc91ff67dbf42.tar.bz2 rails-0228975a4ecfaf81e8d8b8662abdc91ff67dbf42.zip |
Added that FormTagHelper#submit_tag will return to its original state if the submit fails and you're using :disable_with [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6480 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r-- | actionpack/lib/action_view/helpers/form_tag_helper.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb index 417b0fd4b7..a230c28a68 100644 --- a/actionpack/lib/action_view/helpers/form_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb @@ -138,7 +138,9 @@ module ActionView "this.disabled=true", "this.value='#{disable_with}'", "#{options["onclick"]}", - "return (this.form.onsubmit ? (this.form.onsubmit() ? this.form.submit() : false) : this.form.submit())", + "result = (this.form.onsubmit ? (this.form.onsubmit() ? this.form.submit() : false) : this.form.submit())", + "if (result == false) { this.value = this.getAttribute('originalValue'); this.disabled = false }", + "return result", ].join(";") end |