From c459f78fd0e2a39fd2035d9767bf04ea760aa6b9 Mon Sep 17 00:00:00 2001 From: Eric J Date: Fri, 30 Mar 2018 14:25:32 -0700 Subject: [PATCH 1/5] Lesson One Done --- 01 - JavaScript Drum Kit/index-START.html | 28 +++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html index 4070d32767..36bf7644bd 100644 --- a/01 - JavaScript Drum Kit/index-START.html +++ b/01 - JavaScript Drum Kit/index-START.html @@ -1,12 +1,13 @@ + Codestin Search App - +
@@ -57,10 +58,29 @@ - + + From adeec6d98741287f1c36fe9458f9c6dec29db480 Mon Sep 17 00:00:00 2001 From: Eric J Date: Fri, 30 Mar 2018 15:09:00 -0700 Subject: [PATCH 2/5] Day2 --- 02 - JS and CSS Clock/index-START.html | 82 ++++++++++++++++---------- 1 file changed, 52 insertions(+), 30 deletions(-) diff --git a/02 - JS and CSS Clock/index-START.html b/02 - JS and CSS Clock/index-START.html index ee7eaefb1f..c1c71b65a4 100644 --- a/02 - JS and CSS Clock/index-START.html +++ b/02 - JS and CSS Clock/index-START.html @@ -1,26 +1,26 @@ + Codestin Search App - + -
-
-
-
-
-
+
+
+
+
+
- +
+ From aa81bb42431734787c16c1f0e32234c089e279f6 Mon Sep 17 00:00:00 2001 From: Eric J Date: Fri, 30 Mar 2018 15:11:14 -0700 Subject: [PATCH 3/5] quick format --- 03 - CSS Variables/index-START.html | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/03 - CSS Variables/index-START.html b/03 - CSS Variables/index-START.html index 8a4f0d556e..4d4267bcfe 100644 --- a/03 - CSS Variables/index-START.html +++ b/03 - CSS Variables/index-START.html @@ -1,11 +1,15 @@ + Codestin Search App + -

Update CSS Variables with JS

+

Update CSS Variables with + JS +

@@ -21,7 +25,6 @@

Update CSS Variables with JS

@@ -48,4 +51,5 @@

Update CSS Variables with JS

+ From 1345c4feee9f7f3391040d8201144c1eba659777 Mon Sep 17 00:00:00 2001 From: Eric J Date: Mon, 2 Apr 2018 13:02:47 -0700 Subject: [PATCH 4/5] making progress --- 03 - CSS Variables/index-START.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/03 - CSS Variables/index-START.html b/03 - CSS Variables/index-START.html index 4d4267bcfe..8735253337 100644 --- a/03 - CSS Variables/index-START.html +++ b/03 - CSS Variables/index-START.html @@ -25,6 +25,22 @@

Update CSS Variables with From d3b9ca21d8dc5f9ac245240965ecb9e9ce91f6cf Mon Sep 17 00:00:00 2001 From: Eric J Date: Fri, 6 Apr 2018 11:59:55 -0700 Subject: [PATCH 5/5] Making Progress --- 03 - CSS Variables/index-START.html | 5 +- 04 - Array Cardio Day 1/index-START.html | 141 +++++++++++++++++------ 2 files changed, 108 insertions(+), 38 deletions(-) diff --git a/03 - CSS Variables/index-START.html b/03 - CSS Variables/index-START.html index 8735253337..b928067dc0 100644 --- a/03 - CSS Variables/index-START.html +++ b/03 - CSS Variables/index-START.html @@ -68,7 +68,10 @@

Update CSS Variables with function handleUpdate() { // console.log(this.value); - + const suffix = this.dataset.sizing || ''; + // console.log(suffix); + // console.log(this.name); + document.documentElement.style.setProperty(`--${this.name}`, this.value + suffix); } inputs.forEach(input => input.addEventListener('change', handleUpdate)); inputs.forEach(input => input.addEventListener('mousemove', handleUpdate)); diff --git a/04 - Array Cardio Day 1/index-START.html b/04 - Array Cardio Day 1/index-START.html index eec0ffc31d..ed4bf72d42 100644 --- a/04 - Array Cardio Day 1/index-START.html +++ b/04 - Array Cardio Day 1/index-START.html @@ -1,59 +1,126 @@ + Codestin Search App + -

Psst: have a look at the JavaScript Console 💁

+

+ Psst: have a look at the JavaScript Console 💁

+