class Slideshow::SlideDrop
Public Class Methods
new( slide )
click to toggle source
# File lib/slideshow/drops.rb, line 25 def initialize( slide ) @slide = slide end
Public Instance Methods
classes()
click to toggle source
# File lib/slideshow/drops.rb, line 32 def classes() puts " call SlideDrop#classes"; @slide.classes; end
content()
click to toggle source
# File lib/slideshow/drops.rb, line 29 def content() puts " call SlideDrop#content"; @slide.content; end
content_without_header()
click to toggle source
# File lib/slideshow/drops.rb, line 30 def content_without_header() puts " call SlideDrop#content_w/o_header"; @slide.content_without_header; end
data_attributes()
click to toggle source
# File lib/slideshow/drops.rb, line 33 def data_attributes() puts " call SlideDrop#data_attributes"; @slide.data_attributes; end
header()
click to toggle source
# File lib/slideshow/drops.rb, line 31 def header() puts " call SlideDrop#header"; @slide.header; end