aboutsummaryrefslogtreecommitdiffstats
path: root/app/helpers/active_text/tag_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/active_text/tag_helper.rb')
-rw-r--r--app/helpers/active_text/tag_helper.rb10
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