Add Aspect model and collection to backbone

This commit is contained in:
Fabián Rodríguez 2012-11-21 20:27:58 -02:00
parent 4fc8b52c70
commit ae1317dbc0
2 changed files with 5 additions and 0 deletions

View file

@ -0,0 +1,3 @@
app.collections.Aspects = Backbone.Collection.extend({
model: app.models.Aspect
})

View file

@ -0,0 +1,2 @@
app.models.Aspect = Backbone.Model.extend({
});