Skip to content

Commit 8ede517

Browse files
committed
Updated the display
1 parent e97dd95 commit 8ede517

3 files changed

Lines changed: 11 additions & 145 deletions

File tree

js/karaoke-controller.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,6 +559,13 @@ function initializeDebugTable() {
559559
`;
560560
tableBody.appendChild(row);
561561
});
562+
563+
// Initialize the debug summary counter with total target words count
564+
const debugSummary = document.getElementById('debugSummary');
565+
if (debugSummary) {
566+
const totalCount = lyricsEngine.targetWords.length;
567+
debugSummary.textContent = `0 : ${totalCount}`;
568+
}
562569
}
563570

564571
/**
@@ -650,7 +657,7 @@ function updateDebugTable() {
650657
// Update debug summary with match count
651658
const debugSummary = document.getElementById('debugSummary');
652659
if (debugSummary) {
653-
debugSummary.textContent = `(${matchedCount}/${totalCount})`;
660+
debugSummary.textContent = `${matchedCount} : ${totalCount}`;
654661
}
655662
}
656663

vampire_trick_or_treat/style.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ body {
7878

7979
.wavy-border {
8080
position: absolute;
81-
top: -72px;
81+
top: -40px;
8282
left: -72px;
8383
right: -72px;
8484
bottom: -72px;
@@ -90,7 +90,7 @@ body {
9090
.wavy-border::before {
9191
content: '';
9292
position: absolute;
93-
top: -30px;
93+
top: -20px;
9494
left: -30px;
9595
right: -30px;
9696
bottom: -30px;
@@ -154,7 +154,7 @@ body {
154154
.kids-frame-container::before {
155155
content: '';
156156
position: absolute;
157-
top: -90px;
157+
top: -50px;
158158
left: -90px;
159159
right: -90px;
160160
bottom: -90px;

vampire_trick_or_treat/transcript.json

Lines changed: 0 additions & 141 deletions
This file was deleted.

0 commit comments

Comments
 (0)