Method: Pageflow::ThemesHelper#themes_options_json_seed

Defined in:
app/helpers/pageflow/themes_helper.rb

#themes_options_json_seed(config = Pageflow.config) ⇒ Object



5
6
7
8
9
# File 'app/helpers/pageflow/themes_helper.rb', line 5

def themes_options_json_seed(config = Pageflow.config)
  config.themes.each_with_object({}) { |theme, options|
    options[theme.name] = theme.options
  }.to_json.html_safe
end