Created
April 9, 2013 06:16
-
-
Save nomnel/5343350 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ActionView | |
module Helpers | |
module FormTagHelper | |
alias_method :original_submit_tag, :submit_tag | |
def submit_tag(value=nil, options={}) | |
options[:disable_with] = 'Sending...' unless options[:disable_with] | |
original_submit_tag(value, options) | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment