Merge pull request #1112 from jamesaanderson/use-existing-method

Use existing image_html method
This commit is contained in:
Robin Ward 2013-06-29 14:06:27 -07:00
commit 8fa3eaea13

View file

@ -6,7 +6,7 @@ module Oneboxer
matcher /^https?:\/\/.*\.(jpg|png|gif|jpeg)$/
def onebox
"<a href='#{@url}' target='_blank'><img src='#{@url}'></a>"
Oneboxer::BaseOnebox.image_html(@url, nil, @url)
end
end