mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Backport #22710 There was a missing `]` in imagediff.js: ``` const $range = $container.find("input[type='range'"); ``` This PR simply adds this. Fix #22702 Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
parent
263d06f616
commit
4c20be7c00
1 changed files with 1 additions and 1 deletions
|
@ -263,7 +263,7 @@ export default function initImageDiff() {
|
|||
height: sizes.max.height * factor + 4
|
||||
});
|
||||
|
||||
const $range = $container.find("input[type='range'");
|
||||
const $range = $container.find("input[type='range']");
|
||||
const onInput = () => sizes.image1.parent().css({
|
||||
opacity: $range.val() / 100
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue