mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
13 lines
250 B
Ruby
13 lines
250 B
Ruby
require_dependency 'oneboxer/base_onebox'
|
|
|
|
module Oneboxer
|
|
class ImageOnebox < BaseOnebox
|
|
|
|
matcher /^(https?:)?\/\/.+\.(png|jpg|jpeg|gif|bmp|tif|tiff)$/i
|
|
|
|
def onebox
|
|
Oneboxer::BaseOnebox.image_html(@url, nil, @url)
|
|
end
|
|
|
|
end
|
|
end
|