btford / angular-socket-io

Socket.IO component for AngularJS
1.51k stars 233 forks source link

Make socket.on/socket.addListener chainable #81

Open erhhung opened 10 years ago

erhhung commented 10 years ago

It would be nice to make socket.on/socket.addListener chainable like EventEmitter, so we can write:

socket
  .on('event1', handler1)
  .on('event2', handler2)
  ...
erhhung commented 8 years ago

Can we get this fix merged? It's so trivial an omission of a return statement...