This commit is contained in:
Lentil Hoffman 2025-12-26 14:05:34 -06:00
parent bc490b4878
commit ee28aab9bf
Signed by: lentil
GPG Key ID: 0F5B99F3F4D0C087

View File

@ -9,8 +9,9 @@ export class PlayPause extends Tool {
// For now, use a regular button
const button = document.createElement('button');
button.style.width = '50px';
button.style.width = '100px';
button.style.height = '50px';
button.style.margin = '25px';
this.div.appendChild(button);
if (this.playing) {
button.innerHTML = this.pauseHTML;