10
11
12
13
14
15
|
# File 'lib/wnm_support/view_helpers/youtube.rb', line 10
def youtube_video(url, width, height)
url = url.to_s
width = width.to_i.to_s
height = height.to_i.to_s
'<object width="'+width+'" height="'+height+'"><param name="movie" value="'+url+'"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="'+url+'" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" allowscriptaccess="always" allowfullscreen="true"></embed></object>'.html_safe
end
|