From 0fa0605480b6b14d74aea67722be671eb7ba1f23 Mon Sep 17 00:00:00 2001 From: NotAnOctopus Date: Tue, 10 May 2016 11:23:36 +0100 Subject: [PATCH] show times for all players who fully matched a song (#19) --- public/js/app.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/js/app.js b/public/js/app.js index c5c307c..7d23a4a 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -1047,8 +1047,10 @@ $username.addClass('correct'); - if (user.roundpoints > 3) { + if (user.roundpoints > 2) { $guesstime.text((user.guesstime / 1000).toFixed(1) +' s'); + } + if (user.roundpoints > 3) { $roundrank.addClass('icons round-rank stand' + (7 - user.roundpoints)); } } -- 2.54.0