File size: 400 Bytes
058247c
 
938096b
9d1e840
 
938096b
058247c
b0b4603
058247c
b0b4603
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
// scripts/app.js -- FINAL VERSION

import { initUI } from './ui.js';
import { initChat } from './chat.js';
import { initVideo } from './video.js';

// This event listener ensures that all HTML is loaded before we try to run our code.
document.addEventListener('DOMContentLoaded', () => {
    // Initialize all the separate parts of our application.
    initUI();
    initChat();
    initVideo();
});