summaryrefslogtreecommitdiff
path: root/resume.js~
blob: a3776d8e50e4564477121f6d148d33aa9d0a1cb6 (plain)
1
2
3
4
5
6
7

var fullScreenButton = document.getElementById('full_screen_button'),
    resumeContainer = document.getElementById('resume');

fullScreenButton.addEventListener('click', function() {
    resumeContainer.classList.add('resume_fullscreen');
});