1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #3480 from thornbill/a11y

This commit is contained in:
Bill Thornton 2022-03-05 14:54:32 -05:00 committed by GitHub
commit 902f9259de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View file

@ -29,6 +29,7 @@ worker.addEventListener(
function drawBlurhash(target, pixels, width, height) {
const canvas = document.createElement('canvas');
canvas.setAttribute('aria-hidden', 'true');
canvas.width = width;
canvas.height = height;
const ctx = canvas.getContext('2d');