Sha256: 047b28314cff5c5707f6722c4be44ff45f16c473a5324940d463446708e09da6

Contents?: true

Size: 304 Bytes

Versions: 3

Compression:

Stored size: 304 Bytes

Contents

module SimpleForm
  module Inputs
    class TextAreaInput < TextInput
      def input
        input_html_classes.unshift(:textarea).delete(:text_area)
        input_html_options[:style] ||= ""
        input_html_options[:style] += ";height: 61px; width: 251px;"
        super
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
simple_form_awesome-2.4.0 lib/simple_form/inputs/text_area_input.rb
simple_form_awesome-2.3.0 lib/simple_form/inputs/text_area_input.rb
simple_form_awesome-2.2.0 lib/simple_form/inputs/text_area_input.rb