FIX: asynchronously downloaded all fonts.

This commit is contained in:
MajorDroolz
2022-12-18 01:34:46 -05:00
parent 5a4dbcf178
commit ce5edecd77
3 changed files with 28 additions and 13 deletions

6
resume/index.js Normal file
View File

@@ -0,0 +1,6 @@
window.onload = function () {
const links = document.querySelectorAll('link[rel="preload"]');
for (const link of links) {
link.rel = 'stylesheet';
}
}