From 6253c2a92c72b5655a02d8982d0aaa0461f9550d Mon Sep 17 00:00:00 2001 From: Luke Date: Sun, 9 Mar 2014 17:21:03 +0000 Subject: [PATCH] Added alt tag This now conforms to standards complience --- qrcode.js | 1 + 1 file changed, 1 insertion(+) diff --git a/qrcode.js b/qrcode.js index 3385ef5..c1217a3 100644 --- a/qrcode.js +++ b/qrcode.js @@ -361,6 +361,7 @@ var QRCode; this._oContext = this._elCanvas.getContext("2d"); this._bIsPainted = false; this._elImage = document.createElement("img"); + this._elImage.alt = "Scan me!"; this._elImage.style.display = "none"; this._el.appendChild(this._elImage); this._bSupportDataURI = null;