Commit b0624d35 authored by Aaron Boushley's avatar Aaron Boushley

Converting from spaces to tabs.

parent 8f9ee834
...@@ -71,7 +71,6 @@ $(function(){ ...@@ -71,7 +71,6 @@ $(function(){
comparator: function(todo) { comparator: function(todo) {
return todo.get('order'); return todo.get('order');
} }
}); });
// Create our global collection of **Todos**. // Create our global collection of **Todos**.
...@@ -147,7 +146,6 @@ $(function(){ ...@@ -147,7 +146,6 @@ $(function(){
clear: function() { clear: function() {
this.model.clear(); this.model.clear();
} }
}); });
// The Application // The Application
...@@ -251,10 +249,8 @@ $(function(){ ...@@ -251,10 +249,8 @@ $(function(){
var done = this.allCheckbox.checked; var done = this.allCheckbox.checked;
Todos.each(function (todo) { todo.save({'done': done}); }); Todos.each(function (todo) { todo.save({'done': done}); });
} }
}); });
// Finally, we kick things off by creating the **App**. // Finally, we kick things off by creating the **App**.
var App = new AppView; var App = new AppView;
}); });
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