Skip to content

Commit

Permalink
Removed trace logs from todo app
Browse files Browse the repository at this point in the history
  • Loading branch information
robtweed committed Aug 8, 2023
1 parent 937f126 commit 2e6110a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
3 changes: 0 additions & 3 deletions examples/todo/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,6 @@
},

isTodoCompleted: function(id) {
console.log(1111111);
console.log(id);
console.log(todos.byId[id]);
return todos.byId[id].completed;
},

Expand Down
4 changes: 0 additions & 4 deletions examples/todo/js/components/todo/todo-footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,6 @@ button {

updateState() {

console.log('**** update footer state ****');

// iterate through rendered item components and
// update their state based on the display mode

Expand All @@ -162,8 +160,6 @@ button {
let itemGroupComponent = this.context.itemGroupComponent;

itemGroupComponent.forEachItem((itemComponent) => {
console.log(888888);
console.log(itemComponent);
if (this.context.isTodoCompleted(itemComponent.todoId)) {
showClearBtn = true;
}
Expand Down

0 comments on commit 2e6110a

Please sign in to comment.