diff --git a/01 - JavaScript Drum Kit/index.html b/01 - JavaScript Drum Kit/index.html
index 246639f990..ca05ce2b70 100644
--- a/01 - JavaScript Drum Kit/index.html
+++ b/01 - JavaScript Drum Kit/index.html
@@ -59,23 +59,31 @@
diff --git a/02 - JS + CSS Clock/index.html b/02 - JS + CSS Clock/index.html
index 1c777557da..0d5f5b9736 100644
--- a/02 - JS + CSS Clock/index.html
+++ b/02 - JS + CSS Clock/index.html
@@ -61,36 +61,36 @@
background:black;
position: absolute;
top:50%;
- transform-origin: 100%;
+ transform-origin:right; /*same as transform-origin:100%. Use values over 100% to transfrom about a point off the object*/
transform: rotate(90deg);
transition: all 0.05s;
- transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
+ transition-timing-function: cubic-bezier(0, 2.7, 0.58, 1);
}
-
-
+