From 3aa5798c3147ca0d8dbe5d5e71229e72692da521 Mon Sep 17 00:00:00 2001 From: Brandon Fuller Date: Fri, 6 Jul 2018 12:49:36 -0400 Subject: [PATCH] Fix typo in water temp tooltip --- js/tides.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/tides.js b/js/tides.js index a7be2ae..5a599bc 100644 --- a/js/tides.js +++ b/js/tides.js @@ -128,7 +128,7 @@ output = '
'; output += 'WATER'; - output += '
'; + output += '
'; output += parseFloat(temp[0].v).toFixed(1) + '°F'; output += '
'; output += parseFloat(Math.round((temp[0].v - 32) * 5 / 9 * 10) / 10).toFixed(1) + '°C';