Comparing version 1.1.0 to 1.1.1
@@ -836,3 +836,3 @@ (function webpackUniversalModuleDefinition(root, factory) { | ||
if (images.length > 0) { | ||
loadIframeImages(images).then(function () { | ||
loadIframeImages(Array.from(images)).then(function () { | ||
return performPrint(iframeElement, params); | ||
@@ -839,0 +839,0 @@ }); |
@@ -5,3 +5,3 @@ { | ||
"description": "A tiny javascript library to help printing from the web.", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"main": "dist/print.js", | ||
@@ -8,0 +8,0 @@ "types": "src/index.d.ts", |
@@ -43,3 +43,3 @@ # Print.js | ||
Contributions to Print.js are welcome and encouraged. | ||
Contributions to Print.js are greatly welcomed and encouraged. | ||
@@ -60,2 +60,3 @@ ##### Using issues | ||
- Isolate the problem to a simple test case | ||
- Add a codepen, fiddle, codesandbox or similar online example replicating the issue | ||
@@ -62,0 +63,0 @@ Please provide any additional details associated with the bug. |
@@ -40,3 +40,3 @@ import Browser from './browser' | ||
if (images.length > 0) { | ||
loadIframeImages(images).then(() => performPrint(iframeElement, params)) | ||
loadIframeImages(Array.from(images)).then(() => performPrint(iframeElement, params)) | ||
} else { | ||
@@ -43,0 +43,0 @@ performPrint(iframeElement, params) |
Sorry, the diff of this file is not supported yet
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
120911
99