Skip to content

Commit

Permalink
changed indentation from tab to spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
VishnuVardhanBR committed Jan 23, 2024
1 parent 62d6ebb commit 2e89958
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 2e89958

Please sign in to comment.