mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 06:16:30 +08:00
14 lines
259 B
Ruby
14 lines
259 B
Ruby
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}'></video>"
|
|
end
|
|
|
|
end
|
|
end
|