Module: Ckeditor::Helpers::ViewHelper

Extended by:
ActiveSupport::Concern
Defined in:
lib/ckeditor/helpers/view_helper.rb

Instance Method Summary collapse

Instance Method Details

#cktext_area_tag(name, content = nil, options = {}) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
# File 'lib/ckeditor/helpers/view_helper.rb', line 6

def cktext_area_tag(name, content = nil, options = {})
  element_id = sanitize_to_id(name)
  options = { :language => I18n.locale.to_s }.merge(options)
  input_html = { :id => element_id }.merge( options.delete(:input_html) || {} )
  
  output_buffer = ActiveSupport::SafeBuffer.new
  output_buffer << text_area_tag(name, content, input_html)
  output_buffer << javascript_tag(Utils.js_replace(element_id, options))
  
  output_buffer
end