Flowdock
method

validate_color_string

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: ColorField
validate_color_string(string) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/helpers/tags/color_field.rb, line 14
          def validate_color_string(string)
            regex = /#[0-9a-fA-F]{6}/
            if regex.match(string)
              string.downcase
            else
              "#000000"
            end
          end
Register or log in to add new notes.