You've already forked haproxy-wi
mirror of
https://github.com/roxy-wi/roxy-wi.git
synced 2025-12-18 12:04:07 +08:00
v3.2.2
This commit is contained in:
@@ -562,10 +562,8 @@ $( function() {
|
||||
$( "#https-backend" ).click( function(){
|
||||
if ($('#https-backend').is(':checked')) {
|
||||
$( "#https-hide-backend" ).show( "fast" );
|
||||
$( "#path-cert-backend" ).attr('required',true);
|
||||
} else {
|
||||
$( "#https-hide-backend" ).hide( "fast" );
|
||||
$( "#path-cert-backend" ).prop('required',false);
|
||||
}
|
||||
});
|
||||
$( "#options-listen-show" ).click( function(){
|
||||
@@ -1090,24 +1088,6 @@ $( function() {
|
||||
autoFocus: true,
|
||||
minLength: -1
|
||||
});
|
||||
$( "#path-cert-backend" ).autocomplete({
|
||||
source: function( request, response ) {
|
||||
$.ajax( {
|
||||
url: "options.py",
|
||||
data: {
|
||||
getcerts:1,
|
||||
serv: $("#serv3").val(),
|
||||
token: $('#token').val()
|
||||
},
|
||||
success: function( data ) {
|
||||
data = data.replace(/\s+/g,' ');
|
||||
response(data.split(" "));
|
||||
}
|
||||
} );
|
||||
},
|
||||
autoFocus: true,
|
||||
minLength: -1
|
||||
});
|
||||
$( "#interface" ).autocomplete({
|
||||
source: function( request, response ) {
|
||||
$.ajax( {
|
||||
|
||||
Reference in New Issue
Block a user