35283-vm/assets/js/main.js
Flatlogic Bot a3f501db81 One
2025-10-27 18:55:03 +00:00

10 lines
312 B
JavaScript

document.addEventListener('DOMContentLoaded', (event) => {
const playButton = document.getElementById('play-button');
if (playButton) {
playButton.addEventListener('click', () => {
document.getElementById('game-section').scrollIntoView({ behavior: 'smooth' });
});
}
});