Files
safekat/httpdocs/assets/js/safekat/pages/pdf/otDownload.js
2025-05-19 20:47:19 +02:00

12 lines
443 B
JavaScript

// $(() => {
// var opt = {
// margin: 2,
// filename: $(".pdf-wrapper").data("id") + ".pdf",
// image: { type: 'jpeg', quality: 1 },
// html2canvas: { scale: 4 },
// jsPDF: { unit: 'mm', format: 'a4', orientation: 'portrait' },
// pagebreak: { mode: ['avoid-all', 'css', 'legacy'] }
// };
// let elementToPdf = $('body')[0]
// html2pdf().set(opt).from(elementToPdf).save()
// })