summaryrefslogtreecommitdiff
path: root/public/resume.js
diff options
context:
space:
mode:
authorMatt Kosarek <matt.kosarek@canonical.com>2026-03-11 17:49:05 -0400
committerMatt Kosarek <matt.kosarek@canonical.com>2026-03-11 17:49:05 -0400
commit77b0f69d0c6e555349dd491d7ca209924d119e61 (patch)
tree095cf20002f5df752c04c20af4366588bd7ba32b /public/resume.js
parentc929a29c728c6799a3f83f5ad5c1c6f99ed516d4 (diff)
Migrate to astroHEADmaster
Diffstat (limited to 'public/resume.js')
-rw-r--r--public/resume.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/public/resume.js b/public/resume.js
deleted file mode 100644
index f797759..0000000
--- a/public/resume.js
+++ /dev/null
@@ -1,12 +0,0 @@
-
-function main() {
- var fullScreenButton = document.getElementById('full_screen_button'),
- resumeContainer = document.getElementById('resume');
-
- fullScreenButton.addEventListener('click', function() {
- resumeContainer.classList.toggle('resume_fullscreen');
- });
-}
-
-
-window.onload = main;