angular / ngSocket

WebSocket support for angular
Apache License 2.0
204 stars 25 forks source link

Missing dependency #7

Closed DracoNoir closed 10 years ago

DracoNoir commented 10 years ago

When using the latest code, the following error is reported:

TypeError: Cannot read property 'createWebSocketBackend' of undefined at NGWebSocket._connect ...

Upon inspection, it became clear that the ngWebSocketBackend service was not being injected into the function factory. Changing the function factory line to the following fixes the error: factory('ngWebSocket', ['ngWebSocketBackend', function(ngWebSocketBackend) {

jeffbcross commented 10 years ago

Fixed here: https://github.com/jeffbcross/ngSocket/commit/ea67f7aabb9f6afaf56866830d36264eba7bc694

Thanks!