summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2022-04-18 14:55:59 +0800
committerFrederick Yin <fkfd@fkfd.me>2022-04-18 14:55:59 +0800
commitd6ba1fa610740a7ea0ba07256bf525766971d86a (patch)
tree2c3ada5146d6f6a67d7afe1af0858f6415cf4f2b
parent07d780ae8a45de561622dbe818b86d777d19cd0f (diff)
Add const/let in data js, fix dupe line
-rw-r--r--albums.js2
-rw-r--r--words.js4
2 files changed, 3 insertions, 3 deletions
diff --git a/albums.js b/albums.js
index 5275c6e..c99510e 100644
--- a/albums.js
+++ b/albums.js
@@ -1,4 +1,4 @@
-ALBUMS = {
+const ALBUMS = {
"Self-Titled": {
"cover": "img/st.jpg",
"tracks": [
diff --git a/words.js b/words.js
index a9c6f1d..4c0bd16 100644
--- a/words.js
+++ b/words.js
@@ -1,4 +1,4 @@
-WORDS = [
+let WORDS = [
{"track":"Legend","word":"classic","lines":["You were one of those classic ones, yeah","You were one of those classic ones"]},
{"track":"Legend","word":"lunch","lines":["A lunch with you again"]},
{"track":"Legend","word":"visit","lines":["I'm sorry I did not visit"]},
@@ -454,7 +454,7 @@ WORDS = [
{"track":"Glowing Eyes","word":"grid","lines":["Fall off the grid."]},
{"track":"Glowing Eyes","word":"creatures","lines":["We all are stranger creatures than when we all started out as kids,"]},
{"track":"Glowing Eyes","word":"depression","lines":["But I'll kindly enter into rooms of depression,"]},
-{"track":"Glowing Eyes","word":"rather","lines":["But I would rather play a song for the eyes to sing along","But I would rather play a song for the eyes to sing along."]},
+{"track":"Glowing Eyes","word":"rather","lines":["But I would rather play a song for the eyes to sing along"]},
{"track":"Choker","word":"co-sign","lines":["I see no volunteers to co-sign on my fears"]},
{"track":"Choker","word":"stronger","lines":["You get taller, bolder, stronger and the rearview only blinds you"]},
{"track":"Choker","word":"withstand","lines":["Seems like all I'm worth is what I'm able to withstand (Mm-mm)"]},