jackhammer
jackhammer copied to clipboard
Update dependencies
Hey all,
I was wondering if we could spend some time updating dependencies. I am running into some errors trying to insert a logo into the PDF generated in a vuln report and I wonder if it may be because of the outdated external dependencies. The following just blows up the datatable
extend: 'pdfHtml5',
text: '<i class="fa fa-file-pdf-o"></i> PDF',
titleAttr: 'PDF',
title: 'Vulnerability Report'
customize: function ( doc ) {
doc.content.splice(1, 0,
{
margin: [0, 0, 0, 12],
alignment: 'center',
image: 'Logo.png'
}
);
}