Permalink
Fetching contributors…
Cannot retrieve contributors at this time
7 lines (6 sloc) 194 Bytes
saveChanges = function () {
return datacontext.saveChangedTodoItem(self);
};
// Auto-save when these properties change
self.isDone.subscribe(saveChanges);
self.title.subscribe(saveChanges);