File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -591,6 +591,14 @@ input[type=number]::-webkit-outer-spin-button {
591591 color : # 00e676 ;
592592}
593593
594+ # btn_run > .btn-text : before {
595+ content : 'Run'
596+ }
597+
598+ # btn_run .active > .btn-text : before {
599+ content : 'Rerun'
600+ }
601+
594602# btn_pause > .btn-text : before {
595603 content : 'Pause'
596604}
Original file line number Diff line number Diff line change 3737 </ div >
3838 < button id ="btn_run ">
3939 < i class ="fa fa-play " aria-hidden ="true "> </ i >
40- < span class ="btn-text "> Run </ span >
40+ < span class ="btn-text "> </ span >
4141 </ button >
4242 < button id ="btn_prev ">
4343 < i class ="fa fa-chevron-left " aria-hidden ="true "> </ i >
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ module.exports = () => {
2828 // control
2929
3030 const $btnRun = $ ( '#btn_run' ) ;
31- const $btnRunText = ap = $ ( '#btn_run>span' ) ;
3231 const $btnTrace = $ ( '#btn_trace' ) ;
3332 const $btnPause = $ ( '#btn_pause' ) ;
3433 const $btnPrev = $ ( '#btn_prev' ) ;
@@ -48,9 +47,6 @@ module.exports = () => {
4847 Toast . showErrorToast ( err ) ;
4948 TopMenu . resetTopMenuButtons ( ) ;
5049 }
51- else {
52- $btnRunText . html ( "Rerun" ) ;
53- }
5450 } ) ;
5551
5652 $btnPause . click ( ( ) => {
You can’t perform that action at this time.
0 commit comments