We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c73496 commit a145414Copy full SHA for a145414
grid-editing/todo-app.html
@@ -27,13 +27,13 @@
27
28
// TODO rewrite to do incremental rendering on each todo item
29
$( [ todos ] ).bind("insert remove replaceAll", function() {
30
- store.save( todos );
+ store.save();
31
$(store).trigger( "update" );
32
})
33
function update( index, checked ) {
34
todos[ index ].done = checked;
35
updateAllChecked();
36
37
}
38
function updateAllChecked() {
39
var allChecked = todos.length && $.grep( todos, function( item, index ) {
0 commit comments