kopia lustrzana https://github.com/OpenBuilds/OpenBuilds-CONTROL
Keep connect Btn disabled until we have Portlist
rodzic
22e3be02d7
commit
68071d1c21
|
@ -149,11 +149,7 @@ function initSocket() {
|
||||||
// $("#portUSB").val(status.comms.interfaces.activePort);
|
// $("#portUSB").val(status.comms.interfaces.activePort);
|
||||||
$('#connectStatus').html("Port: Not Connected");
|
$('#connectStatus').html("Port: Not Connected");
|
||||||
$("#disconnectBtn").hide();
|
$("#disconnectBtn").hide();
|
||||||
if ($('#portUSB option').length > 0 && $('#portUSB').val() != "") {
|
|
||||||
$("#connectBtn").attr('disabled', false);
|
|
||||||
} else {
|
|
||||||
$("#connectBtn").attr('disabled', true);
|
|
||||||
}
|
|
||||||
$(".grblmode").attr('disabled', true);
|
$(".grblmode").attr('disabled', true);
|
||||||
$("#playpauseresumelabel").html("Run<br>Job")
|
$("#playpauseresumelabel").html("Run<br>Job")
|
||||||
$("#playpauseresumeicon").html("<i class='fas fa-play'></i>")
|
$("#playpauseresumeicon").html("<i class='fas fa-play'></i>")
|
||||||
|
@ -167,8 +163,10 @@ function initSocket() {
|
||||||
$("#sendCommand").prop('disabled', true);
|
$("#sendCommand").prop('disabled', true);
|
||||||
if ($('#portUSB').val() != "") {
|
if ($('#portUSB').val() != "") {
|
||||||
$('#portUSB').parent(".select").removeClass('disabled')
|
$('#portUSB').parent(".select").removeClass('disabled')
|
||||||
|
$("#connectBtn").attr('disabled', false);
|
||||||
} else {
|
} else {
|
||||||
$('#portUSB').parent(".select").addClass('disabled')
|
$('#portUSB').parent(".select").addClass('disabled')
|
||||||
|
$("#connectBtn").attr('disabled', true);
|
||||||
}
|
}
|
||||||
$('#portUSB').parent(".select").addClass('success')
|
$('#portUSB').parent(".select").addClass('success')
|
||||||
$('#portUSB').parent(".select").removeClass('alert')
|
$('#portUSB').parent(".select").removeClass('alert')
|
||||||
|
|
Ładowanie…
Reference in New Issue