mirror of
https://gitlab.com/RemixDev/deemix-webui.git
synced 2025-01-29 01:28:24 +00:00
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')
|
|
})
|