File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -610,7 +610,7 @@ function calibrateBT() {
610610 Bangle . setUI ( uiOpts ) ;
611611 } ) ;
612612 } ) ( d ) ;
613- m [ "− " + d + "h" ] = ( ( ) => ( ) => {
613+ m [ "- " + d + "h" ] = ( ( ) => ( ) => {
614614 S . phaseOffset -= d ;
615615 saveSettings ( ) ;
616616 E . showAlert ( "Offset now: " + ( S . phaseOffset >= 0 ? "+" + S . phaseOffset : S . phaseOffset ) + "h" ) . then ( ( ) => {
@@ -711,7 +711,7 @@ function setBioTimeReference() {
711711 E . showMenu ( m ) ;
712712
713713 function promptRefTime ( ) {
714- E . showPrompt ( "Hour (0– 23)?" ) . then ( h => {
714+ E . showPrompt ( "Hour (0- 23)?" ) . then ( h => {
715715 if ( h === undefined || h < 0 || h > 23 ) {
716716 E . showAlert ( "Invalid hour" ) . then ( ( ) => {
717717 drawClock ( ) ;
@@ -720,7 +720,7 @@ function setBioTimeReference() {
720720 return ;
721721 }
722722 S . bioTimeRefHour = h ;
723- E . showPrompt ( "Minute (0– 59)?" ) . then ( m => {
723+ E . showPrompt ( "Minute (0- 59)?" ) . then ( m => {
724724 if ( m === undefined || m < 0 || m > 59 ) {
725725 E . showAlert ( "Invalid minute" ) . then ( ( ) => {
726726 drawClock ( ) ;
You can’t perform that action at this time.
0 commit comments