From 24a4ac161f6478ccd1d7ea77288a32b80da7254d Mon Sep 17 00:00:00 2001 From: Mark Jessop Date: Mon, 30 Jul 2018 21:08:51 +0930 Subject: [PATCH] Clear time-to-landing display when payload data is cleared. --- README.md | 2 ++ templates/index.html | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index ac0dc21..99bd3d5 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,8 @@ You can then clone this repository with: $ git clone https://github.com/projecthorus/chasemapper.git ``` +**Note: When updating this repository with git pull, make sure to update [horuslib](https://github.com/projecthorus/horus_utils/) as well!** + ## Configuration & Startup Many settings are defined in the horusmapper.cfg configuration file. Create a copy of the example config file using diff --git a/templates/index.html b/templates/index.html index e916b71..7b13f24 100644 --- a/templates/index.html +++ b/templates/index.html @@ -693,6 +693,8 @@ // Update tables. updateTelemetryTable(); updateSummaryDisplay(); + // Clear the time-to-landing display. + $('#time_to_landing').text(""); } });