I have a Clock model in Backbone:
Clock
var Clock = Backbone.Model.extend({});
I\'m trying to get an instance of that that has the l
...and do this if you don't want the trailing slash on the model urlRoot:
url : function() { return this.urlRoot + this.id; },