This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param element The element that triggered this function. | |
* Downloads the results summary in PDF format. | |
*/ | |
function downloadPDF(element) { | |
var orientation = 'l'; | |
var left = 25 | |
const filename = 'TrustedTechTeam-WSEstimate.pdf'; | |
var html = $('.results').html(); |