moved index.html

This commit is contained in:
2016-01-29 11:00:16 +08:00
parent 8b1eafaade
commit 969b116a48
21 changed files with 0 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
define(
[
'backbone',
'models/task'
],
function(
Backbone,
Task
) {
var List = Backbone.Collection.extend({
model: Task,
url: '/tasks'
});
return List;
});