diff --git a/README.md b/README.md index a53fe0f..afae4b9 100644 --- a/README.md +++ b/README.md @@ -126,3 +126,10 @@ You will be demonstrating your knowledge of GitHub workflow and Scrum fundamenta - Your repo's master branch should have the updated code (in the todo-src directory) to reflect each task/ticket. Have fun! :sunglasses: :+1: + +Joseph Cacioppo +Zach was here! +Ming +Cristo BOIIII +Lili +Himal diff --git a/corgi.gif b/corgi.gif new file mode 100644 index 0000000..e61eb35 Binary files /dev/null and b/corgi.gif differ diff --git a/todo-src/index.html b/todo-src/index.html index 89203ad..141a907 100644 --- a/todo-src/index.html +++ b/todo-src/index.html @@ -30,10 +30,14 @@

stuff i gotta do asap

  • - {{do}} + {{do.name}} + +
  • diff --git a/todo-src/script.js b/todo-src/script.js index fe21743..919540f 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -3,7 +3,9 @@ var myApp = angular.module('app', []); myApp.controller('MainCtrl', function ($scope){ - $scope.todos = ["Learn Angular", "Learn node"]; + $scope.todos = [ + {name: "Learn Angular", editting: false}, + {name: "Learn node", editting: false}]; $scope.newItem = ""; $scope.addItem = function(){ @@ -20,7 +22,9 @@ myApp.controller('MainCtrl', function ($scope){ $scope.todos.splice(index, 1); } - + $scope.editItem = function(item) { + item.editting = !item.editting; + } }); /************************* diff --git a/todo-src/style.css b/todo-src/style.css index cbbae65..c4cc090 100644 --- a/todo-src/style.css +++ b/todo-src/style.css @@ -1,6 +1,6 @@ /* Styles go here */ body { - background: grey; + background: #558C89; }