Sha256: b9c2becf54102293ad368be22f69c5ce1bac924d05779eb37b706a49d42a5158
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 KB
Contents
require 'rails_admin/config/fields/base' module RailsAdmin module Config module Fields module Types class Wysihtml5 < RailsAdmin::Config::Fields::Types::Text # Register field type for the type loader RailsAdmin::Config::Fields::Types::register(self) # If you want to have a different toolbar configuration for wysihtml5 # you can use a Ruby hash to configure these options: # https://github.com/jhollingworth/bootstrap-wysihtml5/#advanced register_instance_option :config_options do nil end register_instance_option :css_location do '/assets/bootstrap-wysihtml5.css' end register_instance_option :js_location do '/assets/bootstrap-wysihtml5.js' end register_instance_option :html_attributes do { :cols => '48', :rows => '3' } end register_instance_option :partial do :form_wysihtml5 end [:config_options, :css_location, :js_location].each do |key| register_deprecated_instance_option :"bootstrap_wysihtml5_#{key}", key end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails_admin-0.5.0 | lib/rails_admin/config/fields/types/wysihtml5.rb |