Merge pull request #1064 from jamesaanderson/master

Video onebox
This commit is contained in:
Robin Ward 2013-06-21 07:09:58 -07:00
commit e216e2361b
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
require_dependency 'oneboxer/base_onebox'
module Oneboxer
class VideoOnebox < BaseOnebox
matcher /^https?:\/\/.*\.(mov|mp4|ogg)$/
def onebox
"<video width='100%' height='100%' controls><source src='#{@url}'><a href='#{@url}'>#{@url}</a></video>"
end
end
end