Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
codeatcg authored May 19, 2023
1 parent c7ccc12 commit 4b9365d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/vrpg/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -405,10 +405,10 @@
var pend = parseInt($('#endPos').val());
var dis = pend - pstart;
if(pend < pstart){
$('#Range').html('<p style="color:red">Error! The start coordinate must be smaller than the end coordinate!</p>');
$('#Range').html('<p style="color:red">Error: the start coordinate must be smaller than the end coordinate.</p>');
}else{
if(dis > 1000000){
$('#Range').html('<p style="color:red">Warning! The chromosome interval to view is too wide!</p>');
$('#Range').html('<p style="color:red">Warning: the genomic region to view is too large.</p>');
}else{
$('#Range').html('');
}
Expand Down

0 comments on commit 4b9365d

Please sign in to comment.