Sha256: 877038e8219f9b934d62990502b1b8c8ed0e8d7c349c5e096002a2871322ea66
Contents?: true
Size: 391 Bytes
Versions: 7
Compression:
Stored size: 391 Bytes
Contents
# frozen_string_literal: true # Enable RichTextArea input type for simple_form # => https://github.com/plataformatec/simple_form/issues/1638 class RichTextAreaInput < SimpleForm::Inputs::Base def input(wrapper_options = nil) merged_input_options = merge_wrapper_options(input_html_options, wrapper_options) @builder.rich_text_area(attribute_name, merged_input_options) end end
Version data entries
7 entries across 7 versions & 1 rubygems