From 78d937f2f985f30aa5ce2166d94b079839a129b8 Mon Sep 17 00:00:00 2001 From: zepp Date: Sat, 1 Feb 2025 18:05:02 -0500 Subject: [PATCH] change object strings to multiline --- .../valentines-day-25/script/script.js | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/cafe-events/valentines-day-25/script/script.js b/cafe-events/valentines-day-25/script/script.js index d7e418b..ce8bba1 100644 --- a/cafe-events/valentines-day-25/script/script.js +++ b/cafe-events/valentines-day-25/script/script.js @@ -1,16 +1,16 @@ const notesForEmma = { - tileOne: "hello", - tileTwo: "emma", - tileThree: "how", - tileFour: "are", - tileFive: "you", - tileSix: "i", - tileSeven: "think", - tileEight: "you", - tileNine: "are", - tileTen: "a", - tileEleven: "great", - tileTwelve: "person", + tileOne: ```hello```, + tileTwo: ```emma```, + tileThree: ```how```, + tileFour: ```are```, + tileFive: ```you```, + tileSix: ```i```, + tileSeven: ```think```, + tileEight: ```you```, + tileNine: ```are```, + tileTen: ```a```, + tileEleven: ```great```, + tileTwelve: ```person```, }; const tiles = document.querySelectorAll(".tile");