mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
13 lines
244 B
Ruby
13 lines
244 B
Ruby
require_dependency 'oneboxer/base_onebox'
|
|
|
|
module Oneboxer
|
|
class ImageOnebox < BaseOnebox
|
|
|
|
matcher /^https?:\/\/.*\.(jpg|png|gif|jpeg)$/
|
|
|
|
def onebox
|
|
"<a href='#{@url}' target='_blank'><img src='#{@url}'></a>"
|
|
end
|
|
|
|
end
|
|
end
|