This commit is contained in:
Gabe Kangas
2020-05-23 17:57:49 -07:00
commit cc48f86b85
84 changed files with 1978 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
define(
"main",
[
"MessageList"
],
function(MessageList) {
var ws = new WebSocket("ws://localhost:8080/entry");
var list = new MessageList(ws);
ko.applyBindings(list);
}
);