flowplayer-gem/lib/flowplayer/railties/helper.rb

16 lines
284 B
Ruby
Raw Permalink Normal View History

2011-02-01 21:03:28 +00:00
module Flowplayer
module Helper
2011-02-01 21:03:28 +00:00
# flowplayer_for :hubble do |f|
# f.option 'foo'
# f.onLoad do
# 'this.unmute();'
2011-02-01 21:03:28 +00:00
# end
def flowplayer_for(id, swf, lib='jquery', &block)
Player.new(id, swf, lib, &block).script_tags.html_safe
2011-02-01 21:03:28 +00:00
end
2011-02-01 21:03:28 +00:00
end
end