Add missing close bracket in imagediff (#22710) (#22712)

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:
Yarden Shoham 2023-02-01 14:30:52 +02:00 committed by Loïc Dachary
parent 3feb793831
commit 2e424c8af2
No known key found for this signature in database
GPG key ID: 992D23B392F9E4F2

View file

@ -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
});