Add third parameter to flowplayer_for to match example and Player#initialize.

This commit is contained in:
Pat George 2011-04-19 16:02:05 -04:00
parent 1566d96fa9
commit cc2d7098d6
1 changed files with 7 additions and 7 deletions

View File

@ -8,8 +8,8 @@ module Flowplayer
# end
def flowplayer_for(id, swf, &block)
Player.new(id, swf, &block).script_tags.html_safe
def flowplayer_for(id, swf, lib='jquery', &block)
Player.new(id, swf, lib, &block).script_tags.html_safe
end
end