From c772b1e1cdac39d6c9eac0ec25bb8370a36f392e Mon Sep 17 00:00:00 2001 From: Jim Date: Tue, 19 Sep 2017 12:46:05 -0400 Subject: [PATCH 01/27] beautiful --- todo-src/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/todo-src/style.css b/todo-src/style.css index cbbae65..00bb4e9 100644 --- a/todo-src/style.css +++ b/todo-src/style.css @@ -1,6 +1,6 @@ /* Styles go here */ body { - - background: grey; + font-family: "Comic Sans MS", cursive, sans-serif; + background: aqua; } From 0ed2ed878286833f2343e7d401c0859155b3bed0 Mon Sep 17 00:00:00 2001 From: Jeff Hornbeck Date: Tue, 19 Sep 2017 12:51:54 -0400 Subject: [PATCH 02/27] added group name --- todo-src/index.html | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/todo-src/index.html b/todo-src/index.html index 89203ad..7bfbfbc 100644 --- a/todo-src/index.html +++ b/todo-src/index.html @@ -11,9 +11,10 @@

My little to do app!

- +

GROUP 5a

+
- +
@@ -23,13 +24,13 @@

My little to do app!

- +

stuff i gotta do asap

- +
  • - + {{do}}
- + From 1d644f46ae8f0b79afe4e43112b66c773d2a587b Mon Sep 17 00:00:00 2001 From: lisbeth Date: Tue, 19 Sep 2017 13:02:22 -0400 Subject: [PATCH 03/27] Added Clear Completed Tasks button to html and alert functionality/ --- todo-src/index.html | 6 ++++++ todo-src/script.js | 12 ++++++++++++ 2 files changed, 18 insertions(+) diff --git a/todo-src/index.html b/todo-src/index.html index 89203ad..4e462c4 100644 --- a/todo-src/index.html +++ b/todo-src/index.html @@ -37,6 +37,12 @@

stuff i gotta do asap

+
+ +
diff --git a/todo-src/script.js b/todo-src/script.js index fe21743..cc7d96e 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -19,6 +19,18 @@ myApp.controller('MainCtrl', function ($scope){ var index = $scope.todos.indexOf(item); $scope.todos.splice(index, 1); } + + $scope.clearCompletedItems = function(){ + alert("Let's delete all completed tasks!"); + /*//if state is completed then delete + var clearedTodos = []; + for(var i in $scope.todos){ + if($scope.todos[i].state != 'completed'){ + clearedTodos.push($scope.todos[i]); + } + } + $scope.todos = clearedTodos;*/ + } }); From c78041ce0db87b23a0e9a469bc81b600f07ec414 Mon Sep 17 00:00:00 2001 From: kgrossnickle Date: Tue, 19 Sep 2017 13:15:48 -0400 Subject: [PATCH 04/27] Complete button --- todo-src/index.html | 3 +++ todo-src/script.js | 8 ++++++++ 2 files changed, 11 insertions(+) diff --git a/todo-src/index.html b/todo-src/index.html index 89203ad..c6c630a 100644 --- a/todo-src/index.html +++ b/todo-src/index.html @@ -34,6 +34,9 @@

stuff i gotta do asap

+ + diff --git a/todo-src/script.js b/todo-src/script.js index fe21743..706e941 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -20,6 +20,14 @@ myApp.controller('MainCtrl', function ($scope){ $scope.todos.splice(index, 1); } + $scope.complete = function(item){ + if(item.indexOf("--complete--") == -1){ + var index = $scope.todos.indexOf(item); + $scope.todos.splice(index, 1); + $scope.todos.push(item+"--complete--"); + $scope.newItem = ""; + } + } }); From fafbd1acc3e54a9bbc20313747657220047e4ff8 Mon Sep 17 00:00:00 2001 From: Jim Date: Tue, 19 Sep 2017 13:26:51 -0400 Subject: [PATCH 05/27] some stuff --- todo-src/index.html | 5 +++-- todo-src/script.js | 19 +++++++++++++++---- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/todo-src/index.html b/todo-src/index.html index 89203ad..c88fa7d 100644 --- a/todo-src/index.html +++ b/todo-src/index.html @@ -28,9 +28,10 @@

stuff i gotta do asap

    -
  • +
  • - {{do}} + {{do.name}} + {{do.pri}} diff --git a/todo-src/script.js b/todo-src/script.js index fe21743..0855417 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -3,21 +3,32 @@ var myApp = angular.module('app', []); myApp.controller('MainCtrl', function ($scope){ - $scope.todos = ["Learn Angular", "Learn node"]; $scope.newItem = ""; + $scope.newPri = ""; + + $scope.todos = { + entries : [ + { + "name": "Learn Angular", + "pri": "NOW" + }, + { + "name": "Learn node" + }]}; $scope.addItem = function(){ console.log("in add"); if ($scope.newItem !== ""){ - $scope.todos.push($scope.newItem); + $scope.todos.entries.push({"name": $scope.newItem, "pri": $scope.newPri}); $scope.newItem = ""; + $scope.newPri = ""; } } $scope.deleteItem = function(item){ console.log("in delete"); - var index = $scope.todos.indexOf(item); - $scope.todos.splice(index, 1); + var index = $scope.todos.entries.indexOf(item); + $scope.todos.entries.splice(index, 1); } From 801ae4e665d17986253b30135ba1dd1555ae2c4d Mon Sep 17 00:00:00 2001 From: lisbeth Date: Tue, 19 Sep 2017 13:27:01 -0400 Subject: [PATCH 06/27] Added button to clear all completed todos. --- todo-src/script.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/todo-src/script.js b/todo-src/script.js index 04d583d..9800cf3 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -21,15 +21,16 @@ myApp.controller('MainCtrl', function ($scope){ } $scope.clearCompletedItems = function(){ - alert("Let's delete all completed tasks!"); - /*//if state is completed then delete var clearedTodos = []; + var completedString = "--complete--"; + + //if string doesn't contains --complete-- then add it for(var i in $scope.todos){ - if($scope.todos[i].state != 'completed'){ + if($scope.todos[i].indexOf(completedString) != -1){ clearedTodos.push($scope.todos[i]); } } - $scope.todos = clearedTodos;*/ + $scope.todos = clearedTodos; } $scope.complete = function(item){ From 858e9e4fcfa5b66769237b5573ad278afbf651f3 Mon Sep 17 00:00:00 2001 From: Megan Quach Date: Tue, 19 Sep 2017 13:28:04 -0400 Subject: [PATCH 07/27] changes --- todo-src/script.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/todo-src/script.js b/todo-src/script.js index fe21743..94861d4 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -3,8 +3,16 @@ var myApp = angular.module('app', []); myApp.controller('MainCtrl', function ($scope){ - $scope.todos = ["Learn Angular", "Learn node"]; - $scope.newItem = ""; + $scope.todos = + entries: [ + { + name: "Learn Angular" + priorities: "Now" + }, + { + name: "Learn Node" + priorities: "Someday" + }]; $scope.addItem = function(){ console.log("in add"); From ca4510f572899386f46d66d32c8d6ba2acb1b4be Mon Sep 17 00:00:00 2001 From: Maximiliano Ronda Date: Tue, 19 Sep 2017 13:28:52 -0400 Subject: [PATCH 08/27] editing implemented --- todo-src/index.html | 19 +++++++++++++------ todo-src/script.js | 20 ++++++++++++++------ 2 files changed, 27 insertions(+), 12 deletions(-) diff --git a/todo-src/index.html b/todo-src/index.html index 89203ad..72dc7d0 100644 --- a/todo-src/index.html +++ b/todo-src/index.html @@ -11,9 +11,9 @@

    My little to do app!

    - +
    - +
    @@ -23,22 +23,29 @@

    My little to do app!

    - +

    stuff i gotta do asap

    - +
    • - + {{do}} +
    + +

    Edit

    + +
    - + diff --git a/todo-src/script.js b/todo-src/script.js index fe21743..a777a9c 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -5,7 +5,7 @@ var myApp = angular.module('app', []); myApp.controller('MainCtrl', function ($scope){ $scope.todos = ["Learn Angular", "Learn node"]; $scope.newItem = ""; - + $scope.addItem = function(){ console.log("in add"); if ($scope.newItem !== ""){ @@ -13,14 +13,22 @@ myApp.controller('MainCtrl', function ($scope){ $scope.newItem = ""; } } - + $scope.deleteItem = function(item){ console.log("in delete"); var index = $scope.todos.indexOf(item); $scope.todos.splice(index, 1); } - - + + $scope.editItem = function(id){ + for(i in $scope.todos) { + if($scope.todos[i] == id) { + $scope.todos[i] = $scope.edit ; + } + } +}; + + }); /************************* @@ -32,5 +40,5 @@ myApp.controller('MainCtrl', function ($scope){ * - make it prettier * - add a due date * - add reminder (setInterval) - * - * *********************/ \ No newline at end of file + * + * *********************/ From 73abdc8f288cd44d50717f2953d8beca5e8f5e9c Mon Sep 17 00:00:00 2001 From: Jim Date: Tue, 19 Sep 2017 13:39:03 -0400 Subject: [PATCH 09/27] almsot dere --- todo-src/index.html | 4 +++- todo-src/script.js | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/todo-src/index.html b/todo-src/index.html index c88fa7d..2b524ac 100644 --- a/todo-src/index.html +++ b/todo-src/index.html @@ -23,7 +23,9 @@

    My little to do app!

    - +
    + +

    stuff i gotta do asap

      diff --git a/todo-src/script.js b/todo-src/script.js index 0855417..61e3956 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -5,7 +5,7 @@ var myApp = angular.module('app', []); myApp.controller('MainCtrl', function ($scope){ $scope.newItem = ""; $scope.newPri = ""; - + $scope.priorities = ["NOW", "Tomorrow", "Someday"]; $scope.todos = { entries : [ { From 1f0eda36a7d705aed008ec561dfb43940a3e80b3 Mon Sep 17 00:00:00 2001 From: lisbeth Date: Tue, 19 Sep 2017 13:42:56 -0400 Subject: [PATCH 10/27] Fixed bug. --- todo-src/script.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/todo-src/script.js b/todo-src/script.js index 9800cf3..14f5be9 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -21,16 +21,12 @@ myApp.controller('MainCtrl', function ($scope){ } $scope.clearCompletedItems = function(){ - var clearedTodos = []; - var completedString = "--complete--"; - //if string doesn't contains --complete-- then add it for(var i in $scope.todos){ - if($scope.todos[i].indexOf(completedString) != -1){ - clearedTodos.push($scope.todos[i]); + if($scope.todos[i].indexOf("--complete--") != -1){ + $scope.todos.pop($scope.todos[i]); } } - $scope.todos = clearedTodos; } $scope.complete = function(item){ From 2dbe46e5c1b9a7e39c16595f1e3c01dcf8d59b7e Mon Sep 17 00:00:00 2001 From: chris5175 Date: Tue, 19 Sep 2017 13:45:44 -0400 Subject: [PATCH 11/27] fixed js file --- todo-src/script.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/todo-src/script.js b/todo-src/script.js index 1410195..436c732 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -36,8 +36,8 @@ myApp.controller('MainCtrl', function ($scope){ var completedString = "--complete--"; //if string doesn't contains --complete-- then add it - for(var i in $scope.todos){ - if($scope.todos[i].indexOf(completedString) != -1){ + for(var i in $scope.todos.entries){ + if($scope.todos[i].indexOf(completedString) == -1){ clearedTodos.push($scope.todos[i]); } } @@ -45,11 +45,12 @@ myApp.controller('MainCtrl', function ($scope){ } $scope.complete = function(item){ - if(item.indexOf("--complete--") == -1){ - var index = $scope.todos.indexOf(item); - $scope.todos.splice(index, 1); - $scope.todos.push(item+"--complete--"); + if(item.name.indexOf("--complete--") == -1){ + var index = $scope.todos.entries.indexOf(item); + $scope.todos.entries.splice(index, 1); + $scope.todos.entries.push({"name": item.name+"--complete--", "pri": $scope.newPri}); $scope.newItem = ""; + $scope.newPri = ""; } } From 7b1e066964626b3b738a9c09dc706688b84a98d2 Mon Sep 17 00:00:00 2001 From: Jim Date: Tue, 19 Sep 2017 13:46:44 -0400 Subject: [PATCH 12/27] finito --- todo-src/script.js | 1 + 1 file changed, 1 insertion(+) diff --git a/todo-src/script.js b/todo-src/script.js index 61e3956..be2e543 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -31,6 +31,7 @@ myApp.controller('MainCtrl', function ($scope){ $scope.todos.entries.splice(index, 1); } + }); From ebb9943b7db158c402ae205b65094e5f47079e95 Mon Sep 17 00:00:00 2001 From: chris5175 Date: Tue, 19 Sep 2017 13:54:48 -0400 Subject: [PATCH 13/27] added script back --- todo-src/script.js | 65 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 todo-src/script.js diff --git a/todo-src/script.js b/todo-src/script.js new file mode 100644 index 0000000..d48c7b0 --- /dev/null +++ b/todo-src/script.js @@ -0,0 +1,65 @@ +// Code goes here + +var myApp = angular.module('app', []); + +myApp.controller('MainCtrl', function ($scope){ + $scope.newItem = ""; + $scope.newPri = ""; + + $scope.todos = { + entries : [ + { + "name": "Learn Angular", + "pri": "NOW" + }, + { + "name": "Learn node" + }]}; + + $scope.addItem = function(){ + console.log("in add"); + if ($scope.newItem !== ""){ + $scope.todos.entries.push({"name": $scope.newItem, "pri": $scope.newPri}); + $scope.newItem = ""; + $scope.newPri = ""; + } + } + + $scope.deleteItem = function(item){ + console.log("in delete"); + var index = $scope.todos.entries.indexOf(item); + $scope.todos.entries.splice(index, 1); + } + + $scope.clearCompletedItems = function(){ + //if string doesn't contains --complete-- then add it + for(var i in $scope.todos){ + if($scope.todos[i].indexOf("--complete--") != -1){ + $scope.todos.pop($scope.todos[i]); + } + } + } + + $scope.complete = function(item){ + if(item.name.indexOf("--complete--") == -1){ + var index = $scope.todos.entries.indexOf(item); + $scope.todos.entries.splice(index, 1); + $scope.todos.entries.push({"name": item.name+"--complete--", "pri": $scope.newPri}); + $scope.newItem = ""; + $scope.newPri = ""; + } + } + +}); + +/************************* + * Homework (not rly): + * - "enter" button functionality instead of clicking button + * - edit button functionality + * - button to mark item as "complete" + * - have a total number of items at the top + * - make it prettier + * - add a due date + * - add reminder (setInterval) + * + * *********************/ \ No newline at end of file From c376884beea57c545d9e8a18f39790563796be58 Mon Sep 17 00:00:00 2001 From: Megan Quach Date: Tue, 19 Sep 2017 13:55:40 -0400 Subject: [PATCH 14/27] changes --- todo-src/index.html | 6 ++++-- todo-src/script.js | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/todo-src/index.html b/todo-src/index.html index c88fa7d..7a98530 100644 --- a/todo-src/index.html +++ b/todo-src/index.html @@ -23,7 +23,9 @@

      My little to do app!

      - +
      + +

      stuff i gotta do asap

        @@ -31,7 +33,7 @@

        stuff i gotta do asap

      • {{do.name}} - {{do.pri}} + {{do.pri}} diff --git a/todo-src/script.js b/todo-src/script.js index 9182cc9..e1e3cd6 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -6,7 +6,7 @@ myApp.controller('MainCtrl', function ($scope){ $scope.newItem = ""; $scope.newPri = ""; - + $scope.priorities = ["NOW", "Tomorrow", "Someday"]; $scope.todos = { entries : [ { @@ -33,6 +33,7 @@ myApp.controller('MainCtrl', function ($scope){ $scope.todos.entries.splice(index, 1); } + }); From f0a212f50ae6e18bdc235f4382838869e4707bfb Mon Sep 17 00:00:00 2001 From: chris5175 Date: Tue, 19 Sep 2017 14:46:35 -0400 Subject: [PATCH 15/27] finished clear --- todo-src/script.js | 41 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 37 insertions(+), 4 deletions(-) diff --git a/todo-src/script.js b/todo-src/script.js index d48c7b0..0e802a0 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -7,7 +7,7 @@ myApp.controller('MainCtrl', function ($scope){ $scope.newPri = ""; $scope.todos = { - entries : [ + "entries": [ { "name": "Learn Angular", "pri": "NOW" @@ -33,11 +33,44 @@ myApp.controller('MainCtrl', function ($scope){ $scope.clearCompletedItems = function(){ //if string doesn't contains --complete-- then add it - for(var i in $scope.todos){ - if($scope.todos[i].indexOf("--complete--") != -1){ - $scope.todos.pop($scope.todos[i]); + var work = false; + for(var i in $scope.todos.entries){ + if(work){ + i--; + work = false; + }; + console.log($scope.todos.entries[i].name); + var check = $scope.todos.entries[i].name.split("--"); + console.log(check); + var arr = {}; + if(check[1] == "complete"){ + $scope.todos.entries.splice(i,1); + work = true; + // arr.append(i) + // console.log(arr); } + } + work = false; + for(var i in $scope.todos.entries){ + if(work){ + i--; + work = true; + }; + console.log($scope.todos.entries[i].name); + var check = $scope.todos.entries[i].name.split("--"); + console.log(check); + var arr = {}; + if(check[1] == "complete"){ + $scope.todos.entries.splice(i,1); + work = true; + // arr.append(i) + // console.log(arr); + } + + } + + } $scope.complete = function(item){ From e56ec5cdfafcba9fceafb74a2aa01e102bb0251b Mon Sep 17 00:00:00 2001 From: Jeff Hornbeck Date: Tue, 19 Sep 2017 14:51:54 -0400 Subject: [PATCH 16/27] added --- todo-src/index.html | 4 +++- todo-src/script.js | 24 ++++++++++++++++++------ 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/todo-src/index.html b/todo-src/index.html index 7bfbfbc..3e00444 100644 --- a/todo-src/index.html +++ b/todo-src/index.html @@ -13,7 +13,9 @@

        My little to do app!

        GROUP 5a

        -
        + +
        +

        diff --git a/todo-src/script.js b/todo-src/script.js index fe21743..5e0d7af 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -5,22 +5,34 @@ var myApp = angular.module('app', []); myApp.controller('MainCtrl', function ($scope){ $scope.todos = ["Learn Angular", "Learn node"]; $scope.newItem = ""; - + + $scope.count = function(){ + console.log($scope.todos); + var count = 0; + for (i in $scope.todos){ + count++; + console.log(count); + } + $scope.counter = count; + } + $scope.addItem = function(){ console.log("in add"); if ($scope.newItem !== ""){ $scope.todos.push($scope.newItem); $scope.newItem = ""; } + console.log($scope.todos) + $scope.counter = count($scope.todos); } - + $scope.deleteItem = function(item){ console.log("in delete"); var index = $scope.todos.indexOf(item); $scope.todos.splice(index, 1); } - - + + }); /************************* @@ -32,5 +44,5 @@ myApp.controller('MainCtrl', function ($scope){ * - make it prettier * - add a due date * - add reminder (setInterval) - * - * *********************/ \ No newline at end of file + * + * *********************/ From 8268f2e7b984b4a7ebf70877a70238f71e1a021a Mon Sep 17 00:00:00 2001 From: Jeff Hornbeck Date: Tue, 19 Sep 2017 15:20:30 -0400 Subject: [PATCH 17/27] added counter --- todo-src/index.html | 2 +- todo-src/script.js | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/todo-src/index.html b/todo-src/index.html index 3e00444..f6b30f7 100644 --- a/todo-src/index.html +++ b/todo-src/index.html @@ -15,7 +15,7 @@

        GROUP 5a

        -

        +

        Counter: {{counter}}

        diff --git a/todo-src/script.js b/todo-src/script.js index 5e0d7af..e73beb9 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -23,13 +23,15 @@ myApp.controller('MainCtrl', function ($scope){ $scope.newItem = ""; } console.log($scope.todos) - $scope.counter = count($scope.todos); + $scope.count(); } $scope.deleteItem = function(item){ console.log("in delete"); var index = $scope.todos.indexOf(item); $scope.todos.splice(index, 1); + $scope.count(); + } From 6d0f95af834c49d329eed13be3be434438a5fae4 Mon Sep 17 00:00:00 2001 From: kgrossnickle Date: Wed, 20 Sep 2017 13:27:55 -0400 Subject: [PATCH 18/27] add comments --- todo-src/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/todo-src/index.html b/todo-src/index.html index b649bc3..a235af6 100644 --- a/todo-src/index.html +++ b/todo-src/index.html @@ -42,7 +42,7 @@

        stuff i gotta do asap

      - + From bf45b597122a1111cf72e1be1366423c48691b80 Mon Sep 17 00:00:00 2001 From: kgrossnickle Date: Wed, 20 Sep 2017 13:30:11 -0400 Subject: [PATCH 19/27] add comments --- todo-src/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/todo-src/index.html b/todo-src/index.html index a58443e..d6c0305 100644 --- a/todo-src/index.html +++ b/todo-src/index.html @@ -66,6 +66,7 @@

      Edit

      Clear Completed Tasks + From eaf925c21756e9b32af229c93f1b97af44cfabcf Mon Sep 17 00:00:00 2001 From: Megan Quach Date: Wed, 20 Sep 2017 13:36:33 -0400 Subject: [PATCH 20/27] added comment to html --- todo-src/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/todo-src/style.css b/todo-src/style.css index 0b516a8..b807b07 100644 --- a/todo-src/style.css +++ b/todo-src/style.css @@ -4,3 +4,5 @@ body { background: steelblue; } + +/* background is blue and font changed to comic sans*/ \ No newline at end of file From 7a96406fc8b11037cb82b1235fdc558d4667fa29 Mon Sep 17 00:00:00 2001 From: kgrossnickle Date: Wed, 20 Sep 2017 13:37:49 -0400 Subject: [PATCH 21/27] added comments --- todo-src/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/todo-src/index.html b/todo-src/index.html index d6c0305..1834878 100644 --- a/todo-src/index.html +++ b/todo-src/index.html @@ -57,7 +57,7 @@

      stuff i gotta do asap

    - +

    Edit

    From 961d0f4a2afe3f6b9ab042f4552e11006a23ead8 Mon Sep 17 00:00:00 2001 From: kgrossnickle Date: Wed, 20 Sep 2017 13:39:55 -0400 Subject: [PATCH 22/27] changed comments --- todo-src/script.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/todo-src/script.js b/todo-src/script.js index fbe1495..7557b20 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -145,4 +145,20 @@ myApp.controller('MainCtrl', function($scope) { * - add a due date * - add reminder (setInterval) * + * Homework (not rly): + * - "enter" button functionality instead of clicking button + * - edit button functionality + * - button to mark item as "complete" + * - have a total number of items at the top + * - make it prettier + * - add a due date + * - add reminder (setInterval) + * Homework (not rly): + * - "enter" button functionality instead of clicking button + * - edit button functionality + * - button to mark item as "complete" + * - have a total number of items at the top + * - make it prettier + * - add a due date + * - add reminder (setInterval) * *********************/ From bcc7cf1ea11d3bbf818394e2eb326a1b3a7c50be Mon Sep 17 00:00:00 2001 From: mquach95 Date: Wed, 20 Sep 2017 13:51:57 -0400 Subject: [PATCH 23/27] please work --- todo-src/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/todo-src/style.css b/todo-src/style.css index b807b07..20e6787 100644 --- a/todo-src/style.css +++ b/todo-src/style.css @@ -5,4 +5,5 @@ body { } -/* background is blue and font changed to comic sans*/ \ No newline at end of file +/* background is blue and font changed to comic sans*/ +/*Please never use cyan again*/ \ No newline at end of file From 124779131fee10efaffba330d52ff7fd4e70ff80 Mon Sep 17 00:00:00 2001 From: kgrossnickle Date: Wed, 20 Sep 2017 14:04:06 -0400 Subject: [PATCH 24/27] comment --- todo-src/script.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/todo-src/script.js b/todo-src/script.js index 7557b20..d6ffbf7 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -145,7 +145,9 @@ myApp.controller('MainCtrl', function($scope) { * - add a due date * - add reminder (setInterval) * - * Homework (not rly): + + + * Homework * - "enter" button functionality instead of clicking button * - edit button functionality * - button to mark item as "complete" @@ -153,6 +155,8 @@ myApp.controller('MainCtrl', function($scope) { * - make it prettier * - add a due date * - add reminder (setInterval) + + * Homework (not rly): * - "enter" button functionality instead of clicking button * - edit button functionality @@ -161,4 +165,5 @@ myApp.controller('MainCtrl', function($scope) { * - make it prettier * - add a due date * - add reminder (setInterval) + jh * *********************/ From 5cb9ed759a179c864127788546e71a87c4e248c2 Mon Sep 17 00:00:00 2001 From: kgrossnickle Date: Wed, 20 Sep 2017 14:04:52 -0400 Subject: [PATCH 25/27] comment --- todo-src/script.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/todo-src/script.js b/todo-src/script.js index d6ffbf7..6e185f3 100644 --- a/todo-src/script.js +++ b/todo-src/script.js @@ -147,7 +147,7 @@ myApp.controller('MainCtrl', function($scope) { * - * Homework + * Homework fd * - "enter" button functionality instead of clicking button * - edit button functionality * - button to mark item as "complete" @@ -155,8 +155,6 @@ myApp.controller('MainCtrl', function($scope) { * - make it prettier * - add a due date * - add reminder (setInterval) - - * Homework (not rly): * - "enter" button functionality instead of clicking button * - edit button functionality From 4577ea8d958c2d2ecc5979a5408f37d11e613d3b Mon Sep 17 00:00:00 2001 From: kgrossnickle Date: Wed, 20 Sep 2017 14:07:33 -0400 Subject: [PATCH 26/27] Add files via upload From 59f2ec24ece9ffdf957d46ec474702944c3b316f Mon Sep 17 00:00:00 2001 From: kgrossnickle Date: Wed, 20 Sep 2017 14:08:23 -0400 Subject: [PATCH 27/27] create txt --- todo-src/txt.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 todo-src/txt.txt diff --git a/todo-src/txt.txt b/todo-src/txt.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/todo-src/txt.txt @@ -0,0 +1 @@ +