()
| 1906 | var win = iframe.contentWindow; |
| 1907 | try { win.addEventListener('afterprint', function() { finish(1, null); setTimeout(cleanup, 0); }); } catch (e) {} |
| 1908 | var doPrint = function() { |
| 1909 | try { win.focus(); win.print(); } |
| 1910 | catch (e) { finish(0, '' + e); cleanup(); return; } |
| 1911 | setTimeout(function() { finish(1, null); }, 1000); |
| 1912 | }; |
| 1913 | if (isImage) { |
| 1914 | // Wait for the (data-URL) image to decode/paint before printing, |
| 1915 | // otherwise the print captures an empty page. |