Commit 58976107 authored by Neil van Beinum's avatar Neil van Beinum

Remove extra parens

parent 13e5e49e
......@@ -199,7 +199,7 @@
* number of todos.
*/
Controller.prototype._updateCount = function () {
this.model.getCount((function(todos) {
this.model.getCount(function(todos) {
this.view.render('updateElementCount', todos.active);
this.view.render('clearCompletedButton', {
completed: todos.completed,
......
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