Remove jQuery `.attr` from the image diff again (#30022)

- Follows https://github.com/go-gitea/gitea/pull/29917

Missed these

Signed-off-by: Yarden Shoham <git@yardenshoham.com>
pull/30018/head^2
Yarden Shoham 8 months ago committed by GitHub
parent 3ccda41a53
commit d0d7b4b6d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      web_src/js/features/imagediff.js

@ -98,8 +98,10 @@ export function initImageDiff() {
const text = await resp.text();
const bounds = getDefaultSvgBoundsIfUndefined(text, info.path);
if (bounds) {
info.$images.attr('width', bounds.width);
info.$images.attr('height', bounds.height);
info.$images.each(function() {
this.setAttribute('width', bounds.width);
this.setAttribute('height', bounds.height);
});
hideElem(info.$boundsInfo);
}
}

Loading…
Cancel
Save