mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
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> (cherry picked from commit d0d7b4b6d124dd8fd420a5f3850e37794e09e302)
This commit is contained in:
parent
7092ffc5dd
commit
a395806812
1 changed files with 4 additions and 2 deletions
|
@ -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…
Reference in a new issue