Sha256: 00644719cc35eed212c01568a472170464f6a98206534a5d4ea82de86d79df7c
Contents?: true
Size: 492 Bytes
Versions: 54
Compression:
Stored size: 492 Bytes
Contents
module Effective module FormInputs class Clear < Effective::FormInput def to_html(&block) content_tag(:button, options[:input]) do icon_name.present? ? (icon(icon_name) + name) : name end end def input_html_options { class: 'btn btn-primary', type: 'clear', id: tag_id } end def icon_name return @icon unless @icon.nil? @icon = options[:input].delete(:icon) || ''.html_safe end end end end
Version data entries
54 entries across 54 versions & 1 rubygems