From f6246f840c406547170ad49f739ae12d849a06f8 Mon Sep 17 00:00:00 2001 From: imsaguy Date: Tue, 31 Mar 2015 15:33:11 -0500 Subject: [PATCH] Basic style edits This is just to cleanup the code to follow proper coding styles. --- plugins/score-cycle-times.user.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/score-cycle-times.user.js b/plugins/score-cycle-times.user.js index bf9a6530..c2f11de0 100644 --- a/plugins/score-cycle-times.user.js +++ b/plugins/score-cycle-times.user.js @@ -60,7 +60,7 @@ window.plugin.scoreCycleTimes.update = function() { timeStr = timeStr.replace(/:00$/,''); //FIXME: doesn't remove seconds from AM/PM formatted dates return ''+label+''+timeStr+''; - } + }; var html = '' + formatRow('Cycle start', cycleStart) @@ -72,7 +72,7 @@ window.plugin.scoreCycleTimes.update = function() { $('#score_cycle_times_display').html(html); setTimeout ( window.plugin.scoreCycleTimes.update, checkpointEnd-now); -} +};