From 621b017f0d31412dd9cca3bc23195a05791251ad Mon Sep 17 00:00:00 2001 From: Nicko Guyer Date: Thu, 7 Jan 2016 14:01:48 -0500 Subject: [PATCH] Fix not setting units correctly --- config/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/index.html b/config/index.html index 7809250..d249425 100644 --- a/config/index.html +++ b/config/index.html @@ -114,9 +114,9 @@

Engineering

var imperialUnits = document.getElementById('imperial_radio'); var metricUnits = document.getElementById('metric_radio'); - var units = 'us'; + var units = 'imperial'; if (metricUnits.checked) { - units = 'si'; + units = 'metric'; } var options = {