Skip to content
This repository has been archived by the owner on Oct 23, 2021. It is now read-only.

Commit

Permalink
Fix translation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
alixti committed Sep 18, 2021
1 parent d7a5952 commit 1d1ca74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/script_web.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,13 +168,13 @@ function playCurrentAnim(el) {
lastIDForPlay = parseInt($('#frameID').html());
$('.disableMe').addClass('IDisableYou');
isPlaying = true;
el.attr('class', 'btn btn-danger btn-sm').html('Detener');
el.attr('class', 'btn btn-danger btn-sm').html('Stop');
handlePlay();
} else {
clearTimeout(timeoutPlay);
$('.disableMe').removeClass('IDisableYou');
isPlaying = false;
el.attr('class', 'btn btn-primary btn-sm').html('Reproducir');
el.attr('class', 'btn btn-primary btn-sm').html('Play');
$('#frameID').html(lastIDForPlay);

$.each(animaciones[animID].frames[lastIDForPlay].leds, function (index, value) {
Expand Down

0 comments on commit 1d1ca74

Please sign in to comment.