14 lines
275 B
JavaScript
14 lines
275 B
JavaScript
app.models.Photo = Backbone.Model.extend({
|
|
urlRoot : "/photos",
|
|
|
|
initialize : function() {},
|
|
|
|
createdAt : function() {
|
|
return this.timeOf("created_at");
|
|
},
|
|
|
|
timeOf: function(field) {
|
|
return app.helpers.dateFormatter.parse(this.get(field)) / 1000;
|
|
},
|
|
|
|
});
|