()
| 466 | } |
| 467 | |
| 468 | function downloadFile() { |
| 469 | let link = document.createElement("a"); |
| 470 | link.href = resumeUrl; |
| 471 | link.click(); |
| 472 | const p = document.createElement("p"); |
| 473 | p.innerHTML = "<span class='blink'>###############<span />"; |
| 474 | app.appendChild(p); |
| 475 | setTimeout(() => { |
| 476 | app.removeChild(p); |
| 477 | }, 2500); |
| 478 | document.body.removeChild(link); |
| 479 | } |
| 480 | |
| 481 | async function calc(flag) { |
| 482 | try { |