Method: VCFB::Component::RichTextArea#initialize

Defined in:
lib/vcfb/component/rich_text_area.rb

#initialize(form, method, options = {}) ⇒ RichTextArea

Returns a new instance of RichTextArea.



4
5
6
7
8
9
10
# File 'lib/vcfb/component/rich_text_area.rb', line 4

def initialize(form, method, options = {})
  run_callbacks :initialize do
    @form = form
    @method = method
    @options = defined?(TagOptions::Hash) ? TagOptions::Hash.new(options) : options
  end
end