module MethodDraw::ActionViewBaseInstanceMethods

Public Instance Methods

method_draw(object_name, method, options = {}) click to toggle source
# File lib/method_draw/method_draw.rb, line 19
def method_draw(object_name, method, options = {})
  self.render(
    :partial => "method_draw/method_draw",
    :locals => {
      :template => self,
      :object_name => object_name,
      :method => method,
      :options => options
    }
  )
end
Also aliased as: svg_edit
svg_edit(object_name, method, options = {})
Alias for: method_draw