mirror of
https://github.com/ngoduykhanh/wireguard-ui.git
synced 2025-04-19 19:59:13 +03:00
fix js error
This commit is contained in:
parent
a22e807d2a
commit
893a1ac5db
2 changed files with 32 additions and 33 deletions
|
@ -58,13 +58,13 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group form-group-sm">
|
<div class="form-group form-group-sm">
|
||||||
<select name="status-selector" id="status-selector" class="custom-select form-control-navbar" style="margin-left: 0.5em; height: 90%; font-size: 14px;">
|
<select name="status-selector" id="status-selector" class="custom-select form-control-navbar" style="margin-left: 0.5em; height: 90%; font-size: 14px;">
|
||||||
<!-- THIS SECTION IS OVERRIDDEN BY JS. SEE updateSearchList() function in clients.html BEFORE EDITING -->
|
<!-- THIS SECTION IS OVERRIDDEN BY JS. SEE updateSearchList() function BEFORE EDITING -->
|
||||||
<option value="All">All</option>
|
<option value="All">All</option>
|
||||||
<option value="Enabled">Enabled</option>
|
<option value="Enabled">Enabled</option>
|
||||||
<option value="Disabled">Disabled</option>
|
<option value="Disabled">Disabled</option>
|
||||||
<option value="Connected">Connected</option>
|
<option value="Connected">Connected</option>
|
||||||
<option value="Disconnected">Disconnected</option>
|
<option value="Disconnected">Disconnected</option>
|
||||||
<!-- THIS SECTION IS OVERRIDDEN BY JS. SEE updateSearchList() function in clients.html BEFORE EDITING -->
|
<!-- THIS SECTION IS OVERRIDDEN BY JS. SEE updateSearchList() function BEFORE EDITING -->
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
@ -396,7 +396,7 @@
|
||||||
toastr.options.positionClass = 'toast-top-right-fix';
|
toastr.options.positionClass = 'toast-top-right-fix';
|
||||||
|
|
||||||
updateApplyConfigVisibility()
|
updateApplyConfigVisibility()
|
||||||
// from clients.html
|
|
||||||
updateSearchList()
|
updateSearchList()
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -436,6 +436,35 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updateSearchList() {
|
||||||
|
$.getJSON("{{.basePath}}/api/subnet-ranges", null, function(data) {
|
||||||
|
$("#status-selector option").remove();
|
||||||
|
$("#status-selector").append(
|
||||||
|
$("<option></option>")
|
||||||
|
.text("All")
|
||||||
|
.val("All"),
|
||||||
|
$("<option></option>")
|
||||||
|
.text("Enabled")
|
||||||
|
.val("Enabled"),
|
||||||
|
$("<option></option>")
|
||||||
|
.text("Disabled")
|
||||||
|
.val("Disabled"),
|
||||||
|
$("<option></option>")
|
||||||
|
.text("Connected")
|
||||||
|
.val("Connected"),
|
||||||
|
$("<option></option>")
|
||||||
|
.text("Disconnected")
|
||||||
|
.val("Disconnected")
|
||||||
|
);
|
||||||
|
$.each(data, function(index, item) {
|
||||||
|
$("#status-selector").append(
|
||||||
|
$("<option></option>")
|
||||||
|
.text(item)
|
||||||
|
.val(item)
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
// populateClient function for render new client info
|
// populateClient function for render new client info
|
||||||
// on the client page.
|
// on the client page.
|
||||||
|
|
|
@ -362,36 +362,6 @@ Wireguard Clients
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateSearchList() {
|
|
||||||
$.getJSON("{{.basePath}}/api/subnet-ranges", null, function(data) {
|
|
||||||
$("#status-selector option").remove();
|
|
||||||
$("#status-selector").append(
|
|
||||||
$("<option></option>")
|
|
||||||
.text("All")
|
|
||||||
.val("All"),
|
|
||||||
$("<option></option>")
|
|
||||||
.text("Enabled")
|
|
||||||
.val("Enabled"),
|
|
||||||
$("<option></option>")
|
|
||||||
.text("Disabled")
|
|
||||||
.val("Disabled"),
|
|
||||||
$("<option></option>")
|
|
||||||
.text("Connected")
|
|
||||||
.val("Connected"),
|
|
||||||
$("<option></option>")
|
|
||||||
.text("Disconnected")
|
|
||||||
.val("Disconnected")
|
|
||||||
);
|
|
||||||
$.each(data, function(index, item) {
|
|
||||||
$("#status-selector").append(
|
|
||||||
$("<option></option>")
|
|
||||||
.text(item)
|
|
||||||
.val(item)
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
// load client list
|
// load client list
|
||||||
|
|
Loading…
Add table
Reference in a new issue