Sha256: 539c4348ffd87c9dcfbe077212cae2b0541cdf35445f2ce9638e4de32d930a65
Contents?: true
Size: 494 Bytes
Versions: 5
Compression:
Stored size: 494 Bytes
Contents
# -*- encoding: utf-8 -*- # -*- frozen_string_literal: true -*- # -*- warn_indent: true -*- module RailsBootstrapForm module Inputs module RichTextArea extend ActiveSupport::Concern included do def rich_text_area(attribute, options = {}) options[:class] = ["trix-content", options[:class]].compact.join(" ") field_wrapper_builder(attribute, options) do super(attribute, options) end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems