mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
11 lines
193 B
JavaScript
11 lines
193 B
JavaScript
define(
|
|
"main",
|
|
[
|
|
"MessageList"
|
|
],
|
|
function(MessageList) {
|
|
var ws = new WebSocket("ws://" + location.host + "/entry");
|
|
var list = new MessageList(ws);
|
|
ko.applyBindings(list);
|
|
}
|
|
);
|