Class: Tags::ActionText
- Inherits:
- 
      Base
      
        - Object
- Base
- Tags::ActionText
 
- Includes:
- Placeholderable
- Defined in:
- app/helpers/action_text/tag_helper.rb
Instance Method Summary collapse
Instance Method Details
#editable_value ⇒ Object
| 52 53 54 | # File 'app/helpers/action_text/tag_helper.rb', line 52 def editable_value value&.body.try(:to_trix_html) end | 
#render ⇒ Object
| 45 46 47 48 49 50 | # File 'app/helpers/action_text/tag_helper.rb', line 45 def render = @options.stringify_keys add_default_name_and_id() ["input"] ||= dom_id(object, [["id"], :trix_input].compact.join("_")) if object @template_object.rich_text_area_tag(.delete("name"), .fetch("value") { editable_value }, .except("value")) end |