Add aria-hidden to blurhash canvases

This commit is contained in:
Bill Thornton
2022-03-01 17:51:33 -05:00
parent 5d8b527b92
commit b10271d23d
+1
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');