diff --git a/todo-src/index.html b/todo-src/index.html
index 89203ad..d4102b4 100644
--- a/todo-src/index.html
+++ b/todo-src/index.html
@@ -10,7 +10,7 @@
- My little to do app!
+ My little to do app! Test commit: Cameron Hickey
diff --git a/todo-src/script.js b/todo-src/script.js
index fe21743..55f94b4 100644
--- a/todo-src/script.js
+++ b/todo-src/script.js
@@ -7,7 +7,7 @@ myApp.controller('MainCtrl', function ($scope){
$scope.newItem = "";
$scope.addItem = function(){
- console.log("in add");
+ console.log("in addition");// Maria
if ($scope.newItem !== ""){
$scope.todos.push($scope.newItem);
$scope.newItem = "";
@@ -33,4 +33,4 @@ myApp.controller('MainCtrl', function ($scope){
* - add a due date
* - add reminder (setInterval)
*
- * *********************/
\ No newline at end of file
+ * *********************/
diff --git a/todo-src/style.css b/todo-src/style.css
index cbbae65..4636387 100644
--- a/todo-src/style.css
+++ b/todo-src/style.css
@@ -1,6 +1,11 @@
/* Styles go here */
body {
- background: grey;
+ /* Gray is boring */
+
+ /*hello*/
+
+background: blue;
+
}