mirror of
https://github.com/discourse/discourse.git
synced 2025-05-26 10:02:35 +08:00
UX: correct regression with twitter onebox
This commit is contained in:
@ -326,7 +326,7 @@ class CookedPostProcessor
|
|||||||
# and wrap in a div
|
# and wrap in a div
|
||||||
oneboxed_images.each do |img|
|
oneboxed_images.each do |img|
|
||||||
limit_size!(img)
|
limit_size!(img)
|
||||||
if (width = img["width"].to_i) > 0 && (height = img["height"].to_i) > 0
|
if img.parent["class"].include?("onbox-body") && (width = img["width"].to_i) > 0 && (height = img["height"].to_i) > 0
|
||||||
img.delete('width')
|
img.delete('width')
|
||||||
img.delete('height')
|
img.delete('height')
|
||||||
new_parent = img.add_next_sibling("<div class='aspect-image' style='--aspect-ratio:#{width}/#{height};'/>")
|
new_parent = img.add_next_sibling("<div class='aspect-image' style='--aspect-ratio:#{width}/#{height};'/>")
|
||||||
|
Reference in New Issue
Block a user