Skip to content
This repository was archived by the owner on Dec 19, 2024. It is now read-only.

Commit 1d7b328

Browse files
tabcataphelionz
authored andcommitted
use tabs again
1 parent 4e19441 commit 1d7b328

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/app.jsx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -93,17 +93,17 @@ var app = app || {};
9393
var todos = this.props.model.todos;
9494

9595
var shownTodos = todos
96-
.filter(todo => !todo.cleared)
97-
.filter(function (todo) {
98-
switch (this.state.nowShowing) {
99-
case app.ACTIVE_TODOS:
100-
return !todo.completed;
101-
case app.COMPLETED_TODOS:
102-
return todo.completed;
103-
default:
104-
return true;
105-
}
106-
}, this);
96+
.filter(todo => !todo.cleared)
97+
.filter(function (todo) {
98+
switch (this.state.nowShowing) {
99+
case app.ACTIVE_TODOS:
100+
return !todo.completed;
101+
case app.COMPLETED_TODOS:
102+
return todo.completed;
103+
default:
104+
return true;
105+
}
106+
}, this);
107107

108108
var todoItems = shownTodos.map(function (todo) {
109109
return (

0 commit comments

Comments
 (0)