Sha256: 8337390f9259c19282b08bf7b1c649933a08fe37cfe8624e2b6d8fc04a2d8c76
Contents?: true
Size: 365 Bytes
Versions: 11
Compression:
Stored size: 365 Bytes
Contents
# frozen_string_literal: true module SimpleForm module Inputs class TextInput < Base enable :placeholder, :maxlength, :minlength def input(wrapper_options = nil) merged_input_options = merge_wrapper_options(input_html_options, wrapper_options) @builder.text_area(attribute_name, merged_input_options) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems