10 lines
346 B
JavaScript
10 lines
346 B
JavaScript
define(["backbone"], function(Backbone) {
|
|
var CourseRelative = Backbone.Model.extend({
|
|
defaults: {
|
|
course_location : null, // must never be null, but here to doc the field
|
|
idx : null // the index making it unique in the containing collection (no implied sort)
|
|
}
|
|
});
|
|
return CourseRelative;
|
|
});
|