Progress...

This commit is contained in:
Jeremiah Billmann
2013-05-17 21:23:53 -04:00
parent 18c0e5e065
commit 0193ce27a1
5 changed files with 62 additions and 14 deletions
+13
View File
@@ -0,0 +1,13 @@
window.GarageServerIO = (function (socketio) {
this.io = socketio;
var connectGarageServer = function (path) {
this.io.connect(path + '/garageserver');
};
return {
connectGarageServer: connectGarageServer
};
}) (io);