qrcode-js-package
Advanced tools
Comparing version 1.0.3 to 1.0.4
{ | ||
"name": "qrcode-js-package", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Cross-browser QRCode generator for javascript", | ||
@@ -5,0 +5,0 @@ "main": "qrcode.js", |
@@ -278,4 +278,4 @@ /** | ||
this._elImage.src = this._elCanvas.toDataURL("image/png"); | ||
this._elImage.style.display = "block"; | ||
this._elCanvas.style.display = "none"; | ||
this._elImage.style.setProperty("display", "block", "important"); | ||
this._elCanvas.style.setProperty("display", "none", "important"); | ||
} | ||
@@ -367,3 +367,3 @@ | ||
this._elImage.alt = "Scan me!"; | ||
this._elImage.style.display = "none"; | ||
this._elImage.style.setProperty("display", "none", "important"); | ||
this._el.appendChild(this._elImage); | ||
@@ -389,3 +389,3 @@ this._bSupportDataURI = null; | ||
_elImage.style.display = "none"; | ||
_elImage.style.setProperty("display", "none", "important"); | ||
this.clear(); | ||
@@ -392,0 +392,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
153784