jackhammer icon indicating copy to clipboard operation
jackhammer copied to clipboard

Update dependencies

Open outdoorguy007 opened this issue 7 years ago • 0 comments

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'
				}
			);
            
    }

outdoorguy007 avatar Feb 23 '18 03:02 outdoorguy007