Results 4 issues of DJDaveMark

Hi, I'd like some pointers on how to dispose and recreate the socket connection. At the moment, in the `AppModule` I have `SocketIoModule.forRoot(socketConfig)`, and a single page/component which uses a...

In the [example](https://github.com/zhaosiyang/axios-observable#example), isn't the following: ```// Optionally the request above could also be done as Axios.get('/user?ID=12345'), { params: { ID: 12345 } }) [...] ``` supposed to be: ```//...

Hello, The title says it all. While using the following in a package.json: **~4.0.1** the last time I did a bower install (today 13/07/2016) our application was broken since the...

When the scope is destroyed, destroy (remove) the dropzone instance to avoid memory leaks. ``` javascript scope.$on('$destroy', function () { dropzone.destroy(); }); ```