Sha256: 9ddc5f720714bdc96ec8658c39f6bf3a22da701c1baa84bd3716b817dbc09255
Contents?: true
Size: 581 Bytes
Versions: 89
Compression:
Stored size: 581 Bytes
Contents
# frozen_string_literal: true module ActionView module Helpers module Tags # :nodoc: class ColorField < TextField # :nodoc: def render options = @options.stringify_keys options["value"] ||= validate_color_string(value) @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
89 entries across 89 versions & 4 rubygems