Commit d1647375 authored by Pascal Hartig's avatar Pascal Hartig

Whitespace, upstream fixes

parent ff0a29ce
'use strict'; 'use strict';
/** /**
* The main controller for the app. The controller: * The main controller for the app. The controller:
* - retrieves and persist the model via the todoStorage service * - retrieves and persist the model via the todoStorage service
...@@ -36,11 +37,11 @@ define(['app', 'services/todoStorage'], function (app) { ...@@ -36,11 +37,11 @@ define(['app', 'services/todoStorage'], function (app) {
} }
todos.push({ todos.push({
title: this.newTodo, title: $scope.newTodo,
completed: false completed: false
}); });
this.newTodo = ''; $scope.newTodo = '';
}; };
......
'use strict'; 'use strict';
/** /**
* Services that persists and retrieves TODOs from localStorage. * Services that persists and retrieves TODOs from localStorage.
*/ */
......
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