You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it hangs indefinitely on await new Promise(resolve => { doc.html(wrapBoth, { callback: resolve }) });
when i create the new jsPDF with extra parmeters such as page orientation and size units and messures
when i simply create new jsPDF() it works fine (except the size ofc).
in console, the last debug output i get is from html2canvas
#1 0ms Starting document clone with size 1036x260 scrolled to 0,0
html2canvas.min.js:20 [Violation] Avoid using document.write(). https://developers.google.com/web/updates/2016/08/removing-document-write
fn.toIFrame @ html2canvas.min.js:20
(anonymous) @ html2canvas.min.js:20
(anonymous) @ html2canvas.min.js:20
(anonymous) @ html2canvas.min.js:20
(anonymous) @ html2canvas.min.js:20
a @ html2canvas.min.js:20
Js @ html2canvas.min.js:20
(anonymous) @ html2canvas.min.js:20
(anonymous) @ html.js:488
html2canvas.min.js:20 #1 662ms Document cloned, element located at -100000,0 with size 1019x260 using computed rendering
html2canvas.min.js:20 #1 662ms Starting DOM parsing
html2canvas.min.js:20 #1 689ms Starting renderer for element at -100000,0 with size 1019x260
html2canvas.min.js:20 #1 690ms Canvas renderer initialized (1019x260) with scale 1
and after that the whole page just becomes unresponsive and freezes, and i have to close the tab and reopen (relaod wont do it)
without size params, works fine!
any help would be greatly appricated!!
The text was updated successfully, but these errors were encountered:
jspdf version: 2.5.1
enviorment: Chrome, windows 11
sample code:
it hangs indefinitely on
await new Promise(resolve => { doc.html(wrapBoth, { callback: resolve }) });
when i create the
new jsPDF
with extra parmeters such as page orientation and size units and messureswhen i simply create
new jsPDF()
it works fine (except the size ofc).in console, the last debug output i get is from html2canvas
and after that the whole page just becomes unresponsive and freezes, and i have to close the tab and reopen (relaod wont do it)
without size params, works fine!
any help would be greatly appricated!!
The text was updated successfully, but these errors were encountered: