Artem
Results
1
comments of
Artem
Workaround, that I used: ```js function printJSFixed(options) { if (-1 !== navigator.userAgent.toLowerCase().indexOf('crios') && 'pdf' === options.type && options.base64) { var newWindow = window.open('', '_blank'); newWindow.document.write(''); newWindow.print(); } else { printJS(options);...