Luke Rice

Results 2 comments of Luke Rice

Definitely, given that I'm not making use of the forwarding or scope broadcast features, I may just wrap the socket myself or fork this repo rather than modifying the source...

My factory looks something like this: ``` javascript .factory('Socket', ['socketFactory', function(Socket){ return function(){ var socket = io.connect('', {forceNew: true}); return Socket({ioSocket:socket}); }; }]); ``` And when I disconnect, I have...