Sha256: fbea94f77fbd7b93555ddeeea07248b9e3bee3763062fda30379bdd354b4e206
Contents?: true
Size: 478 Bytes
Versions: 54
Compression:
Stored size: 478 Bytes
Contents
module Effective module FormInputs class UrlField < Effective::FormInput def input_html_options { class: 'form-control', placeholder: 'https://www.example.com', id: tag_id } end def input_group_options { input_group: { class: 'input-group' }, prepend: content_tag(:span, icon('link'), class: 'input-group-text') } end # This has gotta be a valid pattern def validated?(name) true end end end end
Version data entries
54 entries across 54 versions & 1 rubygems