7 lines
No EOL
218 B
JavaScript
7 lines
No EOL
218 B
JavaScript
app.views.PhotoViewer = app.views.Base.extend({
|
|
templateName : "photo-viewer",
|
|
|
|
presenter : function(){
|
|
return { photos : this.model.get("photos") } //json array of attributes, not backbone models, yet.
|
|
}
|
|
}); |