module UEditor::Helpers::ViewHelper

Public Instance Methods

uetext_area_tag(name, content = nil, options = {}) click to toggle source
# File lib/ueditor/helpers/view_helper.rb, line 7
def uetext_area_tag(name, content = nil, options = {})
  id = options[:id] || options[:id] = SecureRandom.hex
  text_area_tag(name, content, options) + uejs(id)
end