mirror of
https://github.com/ianramzy/decentralized-video-chat.git
synced 2024-11-15 06:39:20 +08:00
10 lines
235 B
JavaScript
Executable File
10 lines
235 B
JavaScript
Executable File
;(function () {
|
|
'use strict'
|
|
document.documentElement.classList.remove('no-js')
|
|
document.documentElement.classList.add('js')
|
|
|
|
window.addEventListener('load', function () {
|
|
document.body.classList.add('is-loaded')
|
|
})
|
|
}())
|