@@ -73,19 +73,23 @@ <h2 style="color: #FFFFFF; font-family: sans-serif">Peloton Workout in progress!
7373 < tr class ="speed " sort-order ="0 ">
7474 < td class ="icon "> 🏃</ td >
7575 < td style ="text-align: left "> SPEED</ td >
76- < td class ="speed-avg-title "> < small > AVG</ small > </ td >
76+ < td class ="speed-avg-title "> < button style ="width: 30px; font-size: 18px; color: white; background-color:#4C70BF; border: none; cursor: pointer; "
77+ onclick ="SpeedMinus() "> -</ button > </ td >
7778 < td class ="speed-avg "> 0.0</ td >
7879 < td class ="speed-value values "> < b > 0.0</ b > </ td >
79- < td class ="speed-max-title "> < small > MAX</ small > </ td >
80+ < td class ="speed-max-title "> < button style ="width: 30px; font-size: 18px; color: white; background-color:#4C70BF; border: none; cursor: pointer; "
81+ onclick ="SpeedPlus() "> +</ button > </ td >
8082 < td class ="speed-max "> 0.0</ td >
8183 </ tr >
8284 < tr class ="inclination " sort-order ="1 ">
8385 < td class ="icon "> 📐</ td >
8486 < td style ="text-align: left "> INCLINE</ td >
85- < td > < small > AVG</ small > </ td >
87+ < td > < button style ="width: 30px; font-size: 18px; color: white; background-color:#4C70BF; border: none; cursor: pointer; "
88+ onclick ="InclinationMinus() "> -</ button > </ td >
8689 < td class ="inclination-avg "> 0.0</ td >
8790 < td class ="inclination-value values "> < b > 0.0</ b > </ td >
88- < td > < small > MAX</ small > </ td >
91+ < td > < button style ="width: 30px; font-size: 18px; color: white; background-color:#4C70BF; border: none; cursor: pointer; "
92+ onclick ="InclinationPlus() "> +</ button > </ td >
8993 < td class ="inclination-max "> 0.0</ td >
9094 </ tr >
9195 < tr class ="pace " sort-order ="2 ">
@@ -199,25 +203,7 @@ <h2 style="color: #FFFFFF; font-family: sans-serif">Peloton Workout in progress!
199203 < td colspan ="2 "> < button style ="width: 40px; font-size: 24px; color: white; background-color:#4C70BF "
200204 onclick ="GearsPlus() "> +</ button > </ td >
201205 </ tr >
202- < tr class ="speedcontrol " sort-order ="18 ">
203- < td class ="icon "> 🏃</ td >
204- < td style ="text-align: left "> SPEED</ td >
205- < td colspan ="2 "> < button style ="width: 40px; font-size: 24px; color: white; background-color:#4C70BF "
206- onclick ="SpeedMinus() "> -</ button > </ td >
207- < td class ="speedcontrol-value values "> < b > 0.0</ b > </ td >
208- < td colspan ="2 "> < button style ="width: 40px; font-size: 24px; color: white; background-color:#4C70BF "
209- onclick ="SpeedPlus() "> +</ button > </ td >
210- </ tr >
211- < tr class ="inclinecontrol " sort-order ="19 ">
212- < td class ="icon "> 📐</ td >
213- < td style ="text-align: left "> INCLINE</ td >
214- < td colspan ="2 "> < button style ="width: 40px; font-size: 24px; color: white; background-color:#4C70BF "
215- onclick ="InclinationMinus() "> -</ button > </ td >
216- < td class ="inclinecontrol-value values "> < b > 0.0</ b > </ td >
217- < td colspan ="2 "> < button style ="width: 40px; font-size: 24px; color: white; background-color:#4C70BF "
218- onclick ="InclinationPlus() "> +</ button > </ td >
219- </ tr >
220- < tr class ="nextrow " sort-order ="20 ">
206+ < tr class ="nextrow " sort-order ="17 ">
221207 < td class ="icon "> 🕶</ td >
222208 < td style ="text-align: left "> NEXT</ td >
223209 < td class ="nextrow-value values " colspan ="5 "> < b > </ b > </ td >
@@ -919,8 +905,6 @@ <h2 style="color: #FFFFFF; font-family: sans-serif">Peloton Workout in progress!
919905 $ ( '.inclination-value' ) . html ( "<b>" + inclination . toFixed ( 1 ) + "</b>" ) ;
920906 $ ( '.inclination-avg' ) . html ( inclination_lapavg . toFixed ( 1 ) ) ;
921907 $ ( '.inclination-max' ) . html ( inclination_lapmax . toFixed ( 1 ) ) ;
922- $ ( '.speedcontrol-value' ) . html ( "<b>" + speed . toFixed ( 1 ) + "</b>" ) ;
923- $ ( '.inclinecontrol-value' ) . html ( "<b>" + inclination . toFixed ( 1 ) + "</b>" ) ;
924908 $ ( '.elevation-value' ) . html ( "<b>" + elevation . toFixed ( 1 ) + "</b>" ) ;
925909 if ( tile_target_cadence_enabled && target_cadence > 0 )
926910 $ ( '.cadence-value' ) . html ( "<b>" + cadence . toFixed ( 0 ) + "/" + target_cadence . toFixed ( 0 ) + "</b>" ) ;
0 commit comments