Commit 72ca8ff5 authored by Ryan Niemeyer's avatar Ryan Niemeyer

Remove console.log

parent 7dc0920f
......@@ -46,7 +46,7 @@
//can place methods on prototype, as there can be many todos
ko.utils.extend(Todo.prototype, {
edit: function() { this.editing(true); },
stopEditing: function() { console.log("stop editing"); this.editing(false); }
stopEditing: function() { this.editing(false); }
});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment