Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions CEC 2020 Due Clearance/code.gs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ function doGet(e) {
html.addMetaTag('viewport', 'width=device-width, initial-scale=1');
html.setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL);
return html;

}

function searchDelegateByEmail(formData) {
Expand Down Expand Up @@ -88,7 +87,6 @@ function searchDelegateByEmail(formData) {
Logger.log('sheet not found')
return ["error", "<p class='error'>Batch details not found! Contact admin.</p>"];
}

}


Expand All @@ -103,4 +101,4 @@ function makePDF(res) {
var blob = Utilities.newBlob(receipt.evaluate().getContent(), "text/html", "text.html");
var pdf = blob.getAs("application/pdf");
return pdf.getBytes();
}
}