Use comma as a default fraction separator

This commit is contained in:
Artur Beljajev 2017-04-27 15:36:18 +03:00
parent ebc2a6af72
commit e375fcfabc
3 changed files with 11 additions and 2 deletions

View file

@ -7,7 +7,7 @@ module FormHelper
end
def money_field(object_name, method, options = {})
options[:pattern] = '^[0-9.]+$' unless options[:pattern]
options[:pattern] = '^[0-9.,]+$' unless options[:pattern]
options[:maxlength] = 255 unless options[:maxlength]
text_field(object_name, method, options)