diff --git a/.tern-project b/.tern-project
new file mode 100644
index 0000000000..22bd8f4635
--- /dev/null
+++ b/.tern-project
@@ -0,0 +1,7 @@
+{
+ "ecmaVersion": 6,
+ "libs": [
+ "browser"
+ ],
+ "plugins": {}
+}
\ No newline at end of file
diff --git a/01 - JavaScript Drum Kit/index-FINISHED.html b/01 - JavaScript Drum Kit/index-FINISHED.html
deleted file mode 100644
index 1a16d0997c..0000000000
--- a/01 - JavaScript Drum Kit/index-FINISHED.html
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
- JS Drum Kit
-
-
-
-
-
-
-
- A
- clap
-
-
- S
- hihat
-
-
- D
- kick
-
-
- F
- openhat
-
-
- G
- boom
-
-
- H
- ride
-
-
- J
- snare
-
-
- K
- tom
-
-
- L
- tink
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html
deleted file mode 100644
index 4070d32767..0000000000
--- a/01 - JavaScript Drum Kit/index-START.html
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
- JS Drum Kit
-
-
-
-
-
-
-
- A
- clap
-
-
- S
- hihat
-
-
- D
- kick
-
-
- F
- openhat
-
-
- G
- boom
-
-
- H
- ride
-
-
- J
- snare
-
-
- K
- tom
-
-
- L
- tink
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/01 - JavaScript Drum Kit/index.html b/01 - JavaScript Drum Kit/index.html
index a18f2bc2ca..68a149d13c 100644
--- a/01 - JavaScript Drum Kit/index.html
+++ b/01 - JavaScript Drum Kit/index.html
@@ -57,27 +57,8 @@
-
- function playSound(e) {
- const audio = document.querySelector(`audio[data-key="${e.keyCode}"]`);
- const key = document.querySelector(`.key[data-key="${e.keyCode}"]`);
- if (!audio) return; // stop the fucntion from running all together
- audio.currentTime = 0; // rewind to the start
- audio.play();
- key.classList.add('playing');
- }
- function removeTransition(e) {
- if (e.propertyName !== 'transform') return; // skip it if it's not a transform
- this.classList.remove('playing');
- }
-
- const keys = document.querySelectorAll('.key');
- keys.forEach(key => key.addEventListener('transitionend', removeTransition));
- window.addEventListener('keydown', playSound);
-
-
-