module Sketchily::ActionViewBaseInstanceMethods

Public Instance Methods

sketchily(object_name, method, options = {}) click to toggle source
# File lib/sketchily/sketchily.rb, line 19
def sketchily(object_name, method, options = {})
  self.render(
    :partial => "sketchily/sketchily",
    :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: sketchily