File tree Expand file tree Collapse file tree
vibecoded/games/rubber-rocket Expand file tree Collapse file tree Original file line number Diff line number Diff line change 158158 < div id ="level-intro ">
159159 < div class ="intro-box ">
160160 < div class ="intro-level " id ="intro-level "> NIVEL 1</ div >
161- < div class ="intro-countdown " id ="intro-countdown "> Ready in 3 seconds ...</ div >
161+ < div class ="intro-countdown " id ="intro-countdown "> Listo en 3 segundos ...</ div >
162162 </ div >
163163 </ div >
164164 < div class ="ui ">
11981198 let elapsed = performance . now ( ) - levelIntro . start ;
11991199 let secs = Math . ceil ( 3 - elapsed / 1000 ) ;
12001200 if ( secs >= 2 ) {
1201- document . getElementById ( 'intro-countdown' ) . innerText = `Ready in ${ secs } seconds ...` ;
1201+ document . getElementById ( 'intro-countdown' ) . innerText = `Listo en ${ secs } segundos ...` ;
12021202 } else if ( secs >= 1 ) {
1203- document . getElementById ( 'intro-countdown' ) . innerText = 'Ready in 1 second ...' ;
1203+ document . getElementById ( 'intro-countdown' ) . innerText = 'Listo en 1 segundo ...' ;
12041204 }
12051205 if ( elapsed >= 3000 ) {
12061206 levelIntro = null ;
You can’t perform that action at this time.
0 commit comments