From 1bc96f8815f724ebca0269f815dbb88b1168104e Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Fri, 2 Sep 2016 15:41:09 +0100 Subject: [PATCH] Tweak comments and limits. --- static/findingchart.js | 4 ++-- templates/input.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/static/findingchart.js b/static/findingchart.js index 9d95b63..3238ed3 100644 --- a/static/findingchart.js +++ b/static/findingchart.js @@ -133,8 +133,8 @@ function setup() { return; } - if (size <= 1 || size > 100) { - $('#error').html('Field size must be between 1 and 100 arcmin'); + if (size < 2 || size > 60) { + $('#error').html('Field size must be between 2 and 60 arcmin'); return; } diff --git a/templates/input.html b/templates/input.html index a192df3..b7538ee 100644 --- a/templates/input.html +++ b/templates/input.html @@ -31,7 +31,7 @@

Finding chart generator

- + RA and Dec should be in sexagesimal format, proper motions in arcsec per year.