diff options
author | Luke Shumaker <shumakl@purdue.edu> | 2014-05-01 15:21:42 -0400 |
---|---|---|
committer | Luke Shumaker <shumakl@purdue.edu> | 2014-05-01 15:21:42 -0400 |
commit | 521eae01be1ca3f69b47b3170a0548c3268f4a22 (patch) | |
tree | 84e15c59b334c3ce47fdd330512fec2ff074f774 /config | |
parent | 5ce55c00ac72bc6fbdd095d7ee697cfa35ea8cc4 (diff) |
Make the form submit helpers use <button>, which can be styled better
Diffstat (limited to 'config')
-rw-r--r-- | config/initializers/form_improvements.rb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/config/initializers/form_improvements.rb b/config/initializers/form_improvements.rb new file mode 100644 index 0000000..c91dce8 --- /dev/null +++ b/config/initializers/form_improvements.rb @@ -0,0 +1,31 @@ +# -*- ruby-indent-level: 2; indent-tabs-mode: nil -*- +module ActionView + module Helpers + module FormTagHelper + + # This is modified from actionpack-4.0.2/lib/action_view/helpers/form_tag_helper.rb#submit_tag + def submit_tag(value = "Save changes", options = {}) + options = options.stringify_keys + + if disable_with = options.delete("disable_with") + message = ":disable_with option is deprecated and will be removed from Rails 4.1. " \ + "Use 'data: { disable_with: \'Text\' }' instead." + ActiveSupport::Deprecation.warn message + + options["data-disable-with"] = disable_with + end + + if confirm = options.delete("confirm") + message = ":confirm option is deprecated and will be removed from Rails 4.1. " \ + "Use 'data: { confirm: \'Text\' }' instead'." + ActiveSupport::Deprecation.warn message + + options["data-confirm"] = confirm + end + + content_tag(:button, value, { "type" => "submit", "name" => "commit", "value" => value }.update(options)) + end + + end + end +end |