diaspora/public/javascripts/app/views/photo_view.js

13 lines
No EOL
264 B
JavaScript

app.views.Photo = app.views.StreamObject.extend({
templateName: "photo",
className : "photo loaded",
initialize : function() {
$(this.el).attr("id", this.model.get("guid"));
this.model.bind('remove', this.remove, this);
return this;
}
});