9 lines
195 B
JavaScript
9 lines
195 B
JavaScript
function acceptCookies() {
|
|
document.getElementById('soundtrack').play();
|
|
document.getElementById('video').style.display = 'initial';
|
|
}
|
|
|
|
function declineCookies() {
|
|
acceptCookies();
|
|
}
|