owncast/webroot/js/main.js

12 lines
186 B
JavaScript
Raw Normal View History

2020-05-24 02:57:49 +02:00
define(
"main",
[
"MessageList"
],
function(MessageList) {
var ws = new WebSocket("ws://localhost:8080/entry");
var list = new MessageList(ws);
ko.applyBindings(list);
}
);