Add aspect_view
This commit is contained in:
parent
ae1317dbc0
commit
a9d93beca8
1 changed files with 11 additions and 0 deletions
11
app/assets/javascripts/app/views/aspect_view.js
Normal file
11
app/assets/javascripts/app/views/aspect_view.js
Normal 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
|
||||
})
|
||||
}
|
||||
});
|
||||
Loading…
Reference in a new issue