flowplayer-gem/lib/rails/helper.rb
Scott Davis 5385986f88 inital
2011-01-31 16:06:59 -05:00

19 lines
279 B
Ruby

module Flowplayer
module Helpers
# flowplayer_for :hubble do |f|
# f.option 'foo'
# f.onLoad do
# 'this.unmute();'
# end
def flowplayer_for(id, &block)
FlowPlayer::Player.new(id, &block)
end
end
end