From 71acfdabbd4b16833beca16772c197d6a9eb0500 Mon Sep 17 00:00:00 2001 From: Ken Date: Tue, 26 Feb 2019 08:51:58 -0800 Subject: [PATCH 1/3] adding a info to get in touch / follow authors --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1ef7156..fe3e06d 100644 --- a/README.md +++ b/README.md @@ -25,11 +25,11 @@ This workshop starts as a very high level introduction to the core principles of $ git clone https://github.com/Microsoft/frontend-bootcamp.git $ cd frontend-bootcamp $ npm install - + // For Day 1, Steps 1-3 - $ npm run static + $ npm run static // For the rest of the steps - $ npm start + $ npm start ``` ## Table Of Contents @@ -78,6 +78,13 @@ Demo and Exercises are combined - [React Docs](https://reactjs.org/docs/getting-started.html) - [Thinking in React](https://reactjs.org/docs/thinking-in-react.html) +### Follow the Authors! + +If you are interested in JavaScript, TypeScript, React, Redux, Design Systems, follow us on Twitter: + +@kenneth_chau +@micahgodbolt + # Contributing This project welcomes contributions and suggestions. Most contributions require you to agree to a From 3a197e879a69acc595a0f2e1bedffc70df36af8c Mon Sep 17 00:00:00 2001 From: Micah Godbolt Date: Tue, 26 Feb 2019 08:57:32 -0800 Subject: [PATCH 2/3] fixed step 3 bug --- step1-02/demo/index.html | 14 -------------- step1-03/final/index.html | 3 ++- 2 files changed, 2 insertions(+), 15 deletions(-) diff --git a/step1-02/demo/index.html b/step1-02/demo/index.html index 7d13230..e69de29 100644 --- a/step1-02/demo/index.html +++ b/step1-02/demo/index.html @@ -1,14 +0,0 @@ - - - - - -
-

-
- -
-
-
- - diff --git a/step1-03/final/index.html b/step1-03/final/index.html index b8a52a6..0222d11 100644 --- a/step1-03/final/index.html +++ b/step1-03/final/index.html @@ -48,7 +48,8 @@ function updateRemaining() { const remaining = document.querySelector('.remaining'); - const todos = document.querySelectorAll('.todo'); + const todos = document.querySelectorAll('.todo').length; + console.log(todos); remaining.innerText = todos; } From 13ff73b9d2e66acc1b0bcd56ff16f8701d8e0157 Mon Sep 17 00:00:00 2001 From: Micah Godbolt Date: Tue, 26 Feb 2019 08:59:15 -0800 Subject: [PATCH 3/3] remove console log --- step1-03/final/index.html | 1 - 1 file changed, 1 deletion(-) diff --git a/step1-03/final/index.html b/step1-03/final/index.html index 0222d11..ddf87e9 100644 --- a/step1-03/final/index.html +++ b/step1-03/final/index.html @@ -49,7 +49,6 @@ function updateRemaining() { const remaining = document.querySelector('.remaining'); const todos = document.querySelectorAll('.todo').length; - console.log(todos); remaining.innerText = todos; }