From 2e12ea070282345406d4e7c15d384d6e26496888 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Thu, 31 Dec 2015 16:46:22 -0800 Subject: [PATCH] Make the timer stand apart on android. --- static/babystats.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/babystats.js b/static/babystats.js index 2903a08..1a372cb 100644 --- a/static/babystats.js +++ b/static/babystats.js @@ -806,7 +806,7 @@ BabyStats.prototype.updateDisplayPage_ = function() { } deltas.sort(); var median = deltas[Math.floor(deltas.length / 2)]; - text += '\n⏱' + this.secondsToHuman_(median); + text += '\n⏱ ' + this.secondsToHuman_(median); } this.displayEventCountCells_[tile.type][cutoff[0]].textContent = text; }.bind(this));