From b2e4f1bc64cccc7caa7338c11297b24ad4f11ed1 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 12 Nov 2020 20:42:11 -0700 Subject: [PATCH] basic styling (#5) --- www/index.html | 34 +++++++++++++++++++++++++++++++--- www/index.js | 2 +- 2 files changed, 32 insertions(+), 4 deletions(-) diff --git a/www/index.html b/www/index.html index 1951cd3..7a414bf 100644 --- a/www/index.html +++ b/www/index.html @@ -2,11 +2,39 @@ - gpx web utils + gpx.thermokar.st + + - - + +

+ gpx.thermokar.st +

+ + This client-side tool is for merging + GPX files. + Please note, this has only been tested on GPX files produced by + Garmin and + Strava - your mileage may vary. + Source: + + https://github.com/thermokarst/gpx-web-utils + +
+ +
diff --git a/www/index.js b/www/index.js index 9a40654..e9f7a18 100644 --- a/www/index.js +++ b/www/index.js @@ -1,6 +1,6 @@ import * as gpx from "gpx-web-utils"; -const inputElement = document.getElementById("input"); +const inputElement = document.getElementById("gpxInput"); inputElement.addEventListener("change", readFiles, false);