Sha256: 95f3e8c18049a126fe9a8739e54d65b82da0b8577d17de770f0345aedb4cc423
Contents?: true
Size: 582 Bytes
Versions: 25
Compression:
Stored size: 582 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
25 entries across 23 versions & 5 rubygems