Use socketio for syncing task changes across clients

This commit is contained in:
Abhishek Das
2013-03-30 18:10:12 +05:30
parent 0485272d93
commit 4bb398353e
502 changed files with 206510 additions and 64 deletions
+2 -1
View File
@@ -4,7 +4,8 @@ var app = app || {};
app.List = Backbone.Collection.extend({
model: app.Task
model: app.Task,
url: '/tasks'
});