class Object

Public Instance Methods

z(selector = nil, style = nil, &block) click to toggle source
# File lib/motion-stylez/ext.rb, line 2
def z(selector = nil, style = nil, &block)
  MotionStylez::Base.shared.selector = selector
  if selector && style
    MotionStylez::Base.shared.style(style, &block)
  else
    MotionStylez::Base.shared
  end
end