Method: ChinaRegionFu::Utils#append_html_class_option

Defined in:
lib/china_region_fu/helpers/utils.rb

#append_html_class_option(html_options) ⇒ Object



49
50
51
52
53
54
# File 'lib/china_region_fu/helpers/utils.rb', line 49

def append_html_class_option(html_options)
  _html_options = html_options.deep_dup
  _html_options[:class] ||= ''
  _html_options[:class] << ' china-region-select' unless _html_options[:class].include?('china-region-select')
  _html_options
end