mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 01:56:01 -05:00
13 lines
325 B
Ruby
13 lines
325 B
Ruby
require_dependency 'oneboxer/base_onebox'
|
|
|
|
module Oneboxer
|
|
class FlashVideoOnebox < BaseOnebox
|
|
|
|
matcher /^https?:\/\/.*\.(swf|flv)$/
|
|
|
|
def onebox
|
|
"<object width='100%' height='100%'><param name='#{@url}' value='#{@url}'><embed src='#{@url}' width='100%' height='100%'></embed></object>"
|
|
end
|
|
|
|
end
|
|
end
|