Skip to content

Commit

Permalink
Fix not setting units correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyer committed Jan 7, 2016
1 parent 3f7944a commit 621b017
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ <h1 class='title'>Engineering</h1>
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 = {
Expand Down

0 comments on commit 621b017

Please sign in to comment.