Sha256: 512ce2e154ad063d6f3a40ab145f906477a62a0ec597623bf92bd3bd1e7d13c1
Contents?: true
Size: 558 Bytes
Versions: 151
Compression:
Stored size: 558 Bytes
Contents
module ActionView module Helpers module Tags # :nodoc: class ColorField < TextField # :nodoc: def render options = @options.stringify_keys options["value"] ||= validate_color_string(value(object)) @options = options super end private def validate_color_string(string) regex = /#[0-9a-fA-F]{6}/ if regex.match(string) string.downcase else "#000000" end end end end end end
Version data entries
151 entries across 146 versions & 11 rubygems