As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
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
almost 10 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
almost 10 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
almost 10 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