As far as I can see, Backbone 1.1 is supported by our [Backbone library](http://devcenter.kinvey.com/backbone). Are you running into any specific issues?
C
Christodoulos Christomanos
said
about 7 years ago
Yes, I have problems with Collection with BB 1.1.0
I get this error when I try to fetch
Uncaught Kinvey.Error: model or options argument must contain: url
I initialise my Collection like this: new Kinvey.Backbone.Collection([], {url:'reviews'});
I am using http://da189i1jfloii.cloudfront.net/js/kinvey-backbone-1.1.3.min.js
C
Christodoulos Christomanos
said
about 7 years ago
Aditionally on the getting started page (http://devcenter.kinvey.com/backbone/guides/getting-started) says that you support backbone >= 1.0.0
M
Mark
said
about 7 years ago
It seems there have indeed been some changes. You can use:
var model = new Kinvey.Backbone.Model();
model.urlRoot = 'collection-name';
var collection = new Kinvey.Backbone.Collection([]);
Christodoulos Christomanos
Thanks,
Chris