summaryrefslogtreecommitdiff
path: root/public/resume.js
diff options
context:
space:
mode:
authorMatt Kosarek <matt.kosarek@canonical.com>2026-02-18 17:03:06 -0500
committerMatt Kosarek <matt.kosarek@canonical.com>2026-02-18 17:03:06 -0500
commit59260c4f7a265f1ad4db9e0ee5e469132cdef094 (patch)
tree588cf415f8b819a30090b085d9e32b42836d73ca /public/resume.js
parent2ef049102f6824a6ab6ae99ee87c115f7608707e (diff)
minor: publishing from public with a Makefile instead of having everything at the toplevel
Diffstat (limited to 'public/resume.js')
-rw-r--r--public/resume.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/public/resume.js b/public/resume.js
new file mode 100644
index 0000000..f797759
--- /dev/null
+++ b/public/resume.js
@@ -0,0 +1,12 @@
+
+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;