File size: 434 Bytes
e06118d
f419ef6
 
e06118d
7ced29c
 
5577a8b
7ced29c
e06118d
7ced29c
e06118d
1
2
3
4
5
6
7
8
9
10
11
export function initUI() {
    const productionButton = document.getElementById('production-button');
    const productionPanel = document.getElementById('production-panel');

    if (productionButton && productionPanel) {
        productionButton.addEventListener('click', () => {
            // This toggles the 'open' class which is defined in your main.css
            productionPanel.classList.toggle('open');
        });
    }
}