mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
fix auto image sizes
This commit is contained in:
parent
0f9d5c7ec5
commit
de6a4679a6
1 changed files with 4 additions and 4 deletions
|
@ -3,13 +3,13 @@ require "middleman/fastimage"
|
|||
class Middleman::Base
|
||||
alias_method :pre_automatic_image_tag, :image_tag
|
||||
helpers do
|
||||
def image_tag(path, params={})
|
||||
def image_tag(path, params={})
|
||||
if (!params[:width] || !params[:height]) && !path.include?("://")
|
||||
params[:alt] ||= ""
|
||||
prefix = options.http_images_path rescue options.images_dir
|
||||
http_prefix = options.http_images_path rescue options.images_dir
|
||||
|
||||
begin
|
||||
real_path = File.join(options.public, asset_url(path, prefix))
|
||||
real_path = File.join(options.public, options.images_dir, path)
|
||||
if File.exists? real_path
|
||||
dimensions = Middleman::FastImage.size(real_path, :raise_on_failure => true)
|
||||
params[:width] ||= dimensions[0]
|
||||
|
@ -18,7 +18,7 @@ class Middleman::Base
|
|||
rescue
|
||||
end
|
||||
|
||||
params = params.merge(:src => asset_url(path, prefix))
|
||||
params = params.merge(:src => asset_url(path, http_prefix))
|
||||
params = params.map { |k,v| %Q{#{k}="#{v}"}}.join(' ')
|
||||
"<img #{params} />"
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue