module MethodDrawTag::ActionViewBaseInstanceMethods

Public Instance Methods

method_draw_tag(name, value = nil, options = {}) click to toggle source
# File lib/method_draw/method_draw_tag.rb, line 3
def method_draw_tag(name, value = nil, options = {})
  self.render(
    :partial => "method_draw/method_draw_tag",
    :locals => {
      :name => name,
      :id => sanitize_to_id(name),
      :value => value,
      :options => options
    }
  )
end
Also aliased as: svg_edit_tag
svg_edit_tag(name, value = nil, options = {})
Alias for: method_draw_tag