Modularized code

This commit is contained in:
AlexKvazos
2015-04-28 09:01:06 -05:00
parent 397ae7d322
commit 9886a9408b
7 changed files with 101 additions and 75 deletions
+10
View File
@@ -0,0 +1,10 @@
/**
* Socket Service
*/
module.exports = function() {
var socket = io(window.location.host);
return socket;
};