Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

qrcode-js-package

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

qrcode-js-package - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

2

package.json
{
"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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc