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

Commit

Permalink
Fix code review issues #286
Browse files Browse the repository at this point in the history
  • Loading branch information
clemens-tolboom committed Jun 7, 2016
1 parent 0727131 commit f9a92e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -1239,7 +1239,7 @@ var userInterface = window.userInterface = (function() {

for (var i = 0; i < bot.scores.length && i < 10; i++) {
oContent.push(i + 1 + '. ' + bot.scores[i].score +
' in ' + Math.round(bot.scores[i].duration/1000) + 's');
' in ' + Math.round(bot.scores[i].duration / 1000) + 's');
}

userInterface.overlays.statsOverlay.innerHTML = oContent.join('<br/>');
Expand Down

0 comments on commit f9a92e4

Please sign in to comment.