Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Commit

Permalink
Minor issue fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Federico Navavarrete committed Jan 30, 2018
1 parent 5d9ce8c commit f5555d4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions js/tmTimer.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ function btnStopClick(isAdded){
counter = 1;
isPaused = true;
isStarted = false;
if (selectedColor == 0){
$("#pTime").css('color', "black");
changeImages("-gray");
}else{
$("#pTime").css('color', "white");
changeImages("");
}
if (selectedColor == 0) {
$("#pTime,.lblFooter").css('color', "black");
changeImages("-gray");
} else {
$("#pTime,.lblFooter").css('color', "white");
changeImages("");
}
$('#selectTimes').prop('disabled', false);
$('#btnRestart').prop('disabled', false);
}
Expand Down
2 changes: 1 addition & 1 deletion js/tmTimer.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f5555d4

Please sign in to comment.