summaryrefslogtreecommitdiffstats
path: root/nfsw/static/epilogue.js
blob: 9ba9d1784bdbbbfe8ee356c09c5d01111a3a843d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
document.addEventListener('DOMContentLoaded', function() {
    var ep_wrapper = document.getElementsByClassName('epilogue-wrapper')[0];
    ep_wrapper.style = 'display:block';

    window.setTimeout(
        function() {
            window.location.href = "/io";
        }, 5000
    );
});