summaryrefslogtreecommitdiff
path: root/resume.js
blob: f797759756d3b258b7fe32fc1a86498f585a9da9 (plain)
1
2
3
4
5
6
7
8
9
10
11
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;