Add aspect_view

This commit is contained in:
Fabián Rodríguez 2012-11-21 20:31:23 -02:00
parent ae1317dbc0
commit a9d93beca8

View file

@ -0,0 +1,11 @@
app.views.Aspect = app.views.Base.extend({
templateName: "aspect",
tagName: "li",
presenter : function() {
return _.extend(this.defaultPresenter(), {
aspect : this.model
})
}
});