14 lines
No EOL
250 B
JavaScript
14 lines
No EOL
250 B
JavaScript
app.models.Photo = Backbone.Model.extend({
|
|
urlRoot : "/photos",
|
|
|
|
initialize : function() {},
|
|
|
|
createdAt : function() {
|
|
return this.timeOf("created_at");
|
|
},
|
|
|
|
timeOf: function(field) {
|
|
return new Date(this.get(field)) /1000;
|
|
},
|
|
|
|
}); |