mirror of
https://github.com/uw935/vatsimfox.git
synced 2026-09-17 08:18:56 +00:00
switch to new python version && minor bugs fixed
This commit is contained in:
@@ -34,11 +34,11 @@
|
||||
{% block javascript_code %}
|
||||
<script type="text/javascript">
|
||||
$(".fox_submit").click(function() {
|
||||
const INPUT_CID = 0 + $(".fox_input").val();
|
||||
const INPUT_CID = $(".fox_input").val();
|
||||
|
||||
if ((0 + INPUT_CID) < 100000) {
|
||||
$(".fox_message").text("CID should be equal or more than 100000");
|
||||
return;
|
||||
if (INPUT_CID < 100000) {
|
||||
$(".fox_message").text("CID should be equal or more than 100000");
|
||||
return;
|
||||
}
|
||||
|
||||
fetch("/api/request?request_string=members/" + INPUT_CID, {})
|
||||
|
||||
Reference in New Issue
Block a user