From a1f732d12e0c1fec7b8daa585024358cdd5c6656 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Tue, 12 Jan 2016 19:24:16 -0800 Subject: [PATCH] Fix lint. --- static/babystats.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/static/babystats.js b/static/babystats.js index b6704a2..83533ab 100644 --- a/static/babystats.js +++ b/static/babystats.js @@ -127,17 +127,17 @@ BabyStats.prototype.onChartsReady_ = function() { /* Without these fake legend rows, the color assignments change. */ this.sleepTable_.addRow([ - 'Awake', - 'Awake', - new Date(0, 0, 0, 0, 0, 0), - new Date(0, 0, 0, 23, 59, 59), + 'Awake', + 'Awake', + new Date(0, 0, 0, 0, 0, 0), + new Date(0, 0, 0, 23, 59, 59), ]); this.sleepTable_.addRow([ - 'Asleep', - 'Asleep', - new Date(0, 0, 0, 0, 0, 0), - new Date(0, 0, 0, 23, 59, 59), + 'Asleep', + 'Asleep', + new Date(0, 0, 0, 0, 0, 0), + new Date(0, 0, 0, 23, 59, 59), ]); this.checkInit_();