Lesson Overview updates
This commit is contained in:
@ -0,0 +1,6 @@
|
||||
define([
|
||||
'backbone'],
|
||||
function(
|
||||
Backbone) {
|
||||
return Backbone.Model.extend({});
|
||||
});
|
@ -0,0 +1,14 @@
|
||||
define([
|
||||
'backbone',
|
||||
'goatApp/model/AssignmentStatusModel'
|
||||
],
|
||||
function(
|
||||
Backbone,
|
||||
AssignmentStatusModel) {
|
||||
return Backbone.Collection.extend({
|
||||
//tagName: 'ul',
|
||||
url: 'service/lessonoverview.mvc',
|
||||
model: AssignmentStatusModel
|
||||
});
|
||||
});
|
||||
|
@ -1,10 +0,0 @@
|
||||
define([
|
||||
'backbone'],
|
||||
function(
|
||||
Backbone) {
|
||||
return Backbone.Collection.extend({
|
||||
//tagName: 'ul',
|
||||
url: 'service/lessonoverview.mvc'
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user