Files
edx-platform/cms/static/js/models/course_relative.js
2013-10-04 13:43:50 -04:00

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;
});