File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 7878
7979.wavy-border {
8080 position : absolute;
81- top : -72 px ;
81+ top : -40 px ;
8282 left : -72px ;
8383 right : -72px ;
8484 bottom : -72px ;
9090.wavy-border ::before {
9191 content : '' ;
9292 position : absolute;
93- top : -30 px ;
93+ top : -20 px ;
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 : -90 px ;
157+ top : -50 px ;
158158 left : -90px ;
159159 right : -90px ;
160160 bottom : -90px ;
Load diff This file was deleted.
You can’t perform that action at this time.
0 commit comments