Skip to content

Commit

Permalink
Tweak comments and limits.
Browse files Browse the repository at this point in the history
  • Loading branch information
pchote committed Sep 2, 2016
1 parent ee5ba19 commit 1bc96f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions static/findingchart.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down
2 changes: 1 addition & 1 deletion templates/input.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ <h1>Finding chart generator</h1>
<div class="row m-b">
<div class="col-sm-12 content form form-horizontal">
<div class="form-group">
<label for="coordinates">Enter targets (&lt;Name&gt; &lt;RA&gt; &lt;Dec&gt; &lt;RA-PM&gt; &lt;Dec-PM&gt; &lt;input-epoch&gt; &lt;comment&gt;):</label>
<label for="coordinates">Enter targets (&lt;Name&gt; &lt;RA&gt; &lt;Dec&gt; &lt;RA-PM&gt; &lt;Dec-PM&gt; &lt;Coordinate Epoch&gt; &lt;Comment&gt;):</label>
<textarea name="coords" class="form-control input-block" style="height: 350px"></textarea>
<span>RA and Dec should be in sexagesimal format, proper motions in arcsec per year.</span>
</div>
Expand Down

0 comments on commit 1bc96f8

Please sign in to comment.