From ab6e33f894db48eeaa87bc9fdbf2d1d20e5e5819 Mon Sep 17 00:00:00 2001 From: Jack Allnutt Date: Mon, 26 Sep 2011 03:24:49 +0100 Subject: [PATCH] typo fix --- js/front.events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/front.events.js b/js/front.events.js index 7df5313..599aaf0 100644 --- a/js/front.events.js +++ b/js/front.events.js @@ -201,7 +201,7 @@ kiwi.front.events = { mins = Math.floor(secs / 60); secs = secs % 60; if (mins > 0) { - msg = f(data.attempts) + ' attempt at reconnecting in ' + mins + ' minute' + ((mins > 1) ? 's' : '') + ' , ' + secs + 'second' + (((secs > 1) || (secs === 0)) ? 's' : '') + '...'; + msg = f(data.attempts) + ' attempt at reconnecting in ' + mins + ' minute' + ((mins > 1) ? 's' : '') + ', ' + secs + ' second' + (((secs > 1) || (secs === 0)) ? 's' : '') + '...'; } else { msg = f(data.attempts) + ' attempt at reconnecting in ' + secs + ' second' + (((secs > 1) || (secs === 0)) ? 's' : '') + '...'; } -- 2.25.1