backbone.signalr
backbone.signalr copied to clipboard
Backbone.sync layer for SignalR
Results
2
backbone.signalr issues
Sort by
recently updated
recently updated
newest added
...to work with naked models When using the syncing via this.signalRHub.syncUpdates(this); in a model not a collection the client handlers would fail because models dont have add, remove or reset...
``` javascript self.hub.client.destroyed = function (data) { if (!self.collections) return; var modelData = JSON.parse(data); _(self.collections).each(function (collection) { collection.remove(modelData); }); }; ``` if use modelData to remove, can't work cause backbone...