6 lines
159 B
JavaScript
6 lines
159 B
JavaScript
export const socket = io.connect(window.location.href)
|
|
|
|
socket.on('connect', () => {
|
|
document.getElementById('loading_overlay').classList.remove('active')
|
|
})
|