diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2018-06-05 16:20:55 +0200 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2018-06-05 16:20:55 +0200 |
commit | e04093386705aa8c00e5162614a9d0122cd31891 (patch) | |
tree | 34fe96fd7ab24273466fc3e5e37462a20e8bcc66 /app/helpers/action_text | |
parent | 735734647e119b1ef13a321ad1381dab9b2f22e2 (diff) | |
download | rails-e04093386705aa8c00e5162614a9d0122cd31891.tar.gz rails-e04093386705aa8c00e5162614a9d0122cd31891.tar.bz2 rails-e04093386705aa8c00e5162614a9d0122cd31891.zip |
We are leveling up the text_area, not the text_field, so match names
Diffstat (limited to 'app/helpers/action_text')
-rw-r--r-- | app/helpers/action_text/tag_helper.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/helpers/action_text/tag_helper.rb b/app/helpers/action_text/tag_helper.rb index bd2727bca6..ae52e270a7 100644 --- a/app/helpers/action_text/tag_helper.rb +++ b/app/helpers/action_text/tag_helper.rb @@ -2,7 +2,7 @@ module ActionText module TagHelper cattr_accessor(:id, instance_accessor: false) { 0 } - def rich_text_field_tag(name, value = nil, options = {}) + def rich_text_area_tag(name, value = nil, options = {}) options = options.symbolize_keys options[:input] ||= "trix_input_#{ActionText::TagHelper.id += 1}" @@ -26,7 +26,7 @@ module ActionView::Helpers options = @options.stringify_keys add_default_name_and_id(options) options["input"] ||= dom_id(object, [options["id"], :trix_input].compact.join("_")) - @template_object.rich_text_field_tag(options.delete("name"), editable_value, options) + @template_object.rich_text_area_tag(options.delete("name"), editable_value, options) end def editable_value @@ -35,14 +35,14 @@ module ActionView::Helpers end module FormHelper - def rich_text_field(object_name, method, options = {}) + def rich_text_area(object_name, method, options = {}) Tags::ActionText.new(object_name, method, self, options).render end end class FormBuilder - def rich_text_field(method, options = {}) - @template.rich_text_field(@object_name, method, objectify_options(options)) + def rich_text_area(method, options = {}) + @template.rich_text_area(@object_name, method, objectify_options(options)) end end end |