This commit is contained in:
Arpit Jalan 2017-11-01 15:51:17 +05:30
parent 6b5bb9d664
commit 2792c3c80e
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ class CookedPostProcessor
# and wrap in a div
oneboxed_images.each do |img|
limit_size!(img)
if img.parent["class"].include?("onbox-body") && (width = img["width"].to_i) > 0 && (height = img["height"].to_i) > 0
if img.parent["class"].include?("onebox-body") && (width = img["width"].to_i) > 0 && (height = img["height"].to_i) > 0
img.delete('width')
img.delete('height')
new_parent = img.add_next_sibling("<div class='aspect-image' style='--aspect-ratio:#{width}/#{height};'/>")