Skip to content

Commit

Permalink
js,html: Change the 'Play' button to 'Music' button
Browse files Browse the repository at this point in the history
This patch was suggested during the Nitzanim hackathon

Signed-off-by: Shani Leviim <sleviim@redhat.com>
  • Loading branch information
sleviim committed Aug 27, 2023
1 parent 4589e77 commit 5e1c83f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rose/web/game.js
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ var ROSE = (function() {
if (self.playing) {
self.playing = false;
self.pause();
$(this).text("Play");
$(this).text("Music");
} else {
self.playing = true;
self.play();
Expand Down
2 changes: 1 addition & 1 deletion rose/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<button id="start" disabled>Start</button>
<button id="stop" disabled>Stop</button>
<button id="music_ctl">Play</button>
<button id="music_ctl">Music</button>
<label id="info"></label>

<div id="rate_ctl">
Expand Down

0 comments on commit 5e1c83f

Please sign in to comment.