Michael

Results 6 comments of Michael

+1 ... @tameraydin can you please show me where in the file I can edit to resolve this issue?

I'm experiencing the same issue. Did you find a solution?

I came up with the following solution to make removeListener work if you're interested. If involves not angular-socket-io and writing a factory to export socket.io. I think it's easier and...

1) include the cdn in your html 2) Create a factory ``` myApp.factory('Socket', ['$rootScope', function ($rootScope) { var socket = io.connect(); return { on: function (eventName, callback) { function wrapper()...

Thanks...I tried it in app.js and I get: `Syntax Error: 'import' and 'export' may only appear at the top level (19:2) 17 | 18 | if(typeof window !== 'undefined'){ 19...

I'm also working on a project which requires exactly the same solution so it would be very helpful! @BenElliottBV @calebeaires @s207152 would you be interested in working together on a...