Skip to content

Commit

Permalink
Merge branch 'issue.1503' of https://github.com/VishnuVardhanBR/sugar…
Browse files Browse the repository at this point in the history
…izer into pr/1506
  • Loading branch information
Lionel Laské committed Jan 27, 2024
2 parents ca71134 + 2e89958 commit e21218a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions activities/Gears.activity/js/activity.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ define(["sugar-web/activity/activity","sugar-web/graphics/radiobuttonsgroup","ge
}
if(gearSketch.selectedButton == "playButton"){
gearSketch.selectButton(null);
playButton.classList.remove('pause');
playButton.classList.add('play');
playButton.classList.remove('pause');
playButton.classList.add('play');
}
else{
gearSketch.selectButton("playButton");
playButton.classList.remove('play');
playButton.classList.add('pause');
playButton.classList.remove('play');
playButton.classList.add('pause');
}
});

Expand Down

0 comments on commit e21218a

Please sign in to comment.