Last active
August 29, 2015 14:05
-
-
Save JSila/2cf04471782de6844918 to your computer and use it in GitHub Desktop.
Angular service for socket.io
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.factory('socket', function ($rootScope) { | |
var socket = io.connect(); | |
return { | |
on: function(event, callback) { | |
socket.on(event, function () { | |
var args = arguments; | |
$rootScope.$apply(function () { | |
callback.apply(socket, args); | |
}); | |
}); | |
}, | |
emit: function(event, data, callback) { | |
socket.emit(event, data, function () { | |
var args = arguments; | |
$rootScope.$apply(function () { | |
if(callback) { | |
callback.apply(socket, args); | |
} | |
}); | |
}) | |
} | |
}; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment