From 1b41bc1d4e5e36155c50f54918abbcf2aa31b6ae Mon Sep 17 00:00:00 2001 From: Keith Irwin Date: Thu, 21 Feb 2019 20:15:24 -0500 Subject: [PATCH] Fixed tabs/spaces --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 3386726..f66b44e 100644 --- a/main.js +++ b/main.js @@ -11,7 +11,7 @@ if (!'geolocation' in navigator) { const WID = navigator.geolocation.watchPosition( function (loc) { // got speed if (loc.coords.speed) { - console.log('Got speed:',loc.coords.speed) + console.log('Got speed:',loc.coords.speed) // convert to mph and display speedDiv.innerHTML = (2.23693629205*loc.coords.speed).toFixed(1) } else {