diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2018-04-13 14:10:18 -0700 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2018-04-13 14:10:18 -0700 |
commit | 491bee6e64863f2dc6e8d1f59829e61d4a8c86ad (patch) | |
tree | e5c536c6cd106685633d2e7d1fc67f2d8b95406c /app/helpers | |
parent | 7c4e70ea0bf0f00c0e919128447412fab49772f9 (diff) | |
download | rails-491bee6e64863f2dc6e8d1f59829e61d4a8c86ad.tar.gz rails-491bee6e64863f2dc6e8d1f59829e61d4a8c86ad.tar.bz2 rails-491bee6e64863f2dc6e8d1f59829e61d4a8c86ad.zip |
Use rich_text instead of active_text
Just like we use has_many_attachments instead of active_storage_attachements.
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/active_text/tag_helper.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/helpers/active_text/tag_helper.rb b/app/helpers/active_text/tag_helper.rb index 590ff93fd5..1b97621dac 100644 --- a/app/helpers/active_text/tag_helper.rb +++ b/app/helpers/active_text/tag_helper.rb @@ -2,7 +2,7 @@ module ActiveText module TagHelper cattr_accessor(:id, instance_accessor: false) { 0 } - def active_text_field_tag(name, value = nil, options = {}) + def rich_text_field_tag(name, value = nil, options = {}) options = options.symbolize_keys options[:input] ||= "trix_input_#{ActiveText::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.active_text_field_tag(options.delete("name"), editable_value, options) + @template_object.rich_text_field_tag(options.delete("name"), editable_value, options) end def editable_value @@ -35,14 +35,14 @@ module ActionView::Helpers end module FormHelper - def active_text_field(object_name, method, options = {}) + def rich_text_field(object_name, method, options = {}) Tags::ActiveText.new(object_name, method, self, options).render end end class FormBuilder - def active_text_field(method, options = {}) - @template.active_text_field(@object_name, method, objectify_options(options)) + def rich_text_field(method, options = {}) + @template.rich_text_field(@object_name, method, objectify_options(options)) end end end |