backbone
backbone copied to clipboard
An example of BackboneJS integration with the PubNub library.
``` coffeescript class Entities.Customers extends Backbone.PubNub.Collection paramRoot: 'customer' model: Entities.Customer url: 'api/customers' name: 'mopaca:customers' customers = new Entities.Customers customers.fetch() //throws 'Could not sync: undefined is not a function' /* console...
Added Backbone.PubNub.Collection#history which implements the PubNub History API for PubNub.Collections.