We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fd07450 + 4780a4e commit 15371c5Copy full SHA for 15371c5
1 file changed
src/js/print.js
@@ -37,7 +37,7 @@ const Print = {
37
const images = printDocument.getElementsByTagName('img')
38
39
if (images.length > 0) {
40
- loadIframeImages(images).then(() => performPrint(iframeElement, params))
+ loadIframeImages(Array.from(images)).then(() => performPrint(iframeElement, params))
41
} else {
42
performPrint(iframeElement, params)
43
}
0 commit comments