mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-13 00:32:58 -07:00
Hide remote access check message
This commit is contained in:
parent
78034b82a9
commit
64d67d8209
1 changed files with 3 additions and 1 deletions
|
@ -1868,7 +1868,7 @@ $(document).ready(function() {
|
||||||
}
|
}
|
||||||
getServerOptions();
|
getServerOptions();
|
||||||
|
|
||||||
function PMSCloudCheck () {
|
function PMSCloudCheck() {
|
||||||
if ($('#pms_is_cloud').val() === "1") {
|
if ($('#pms_is_cloud').val() === "1") {
|
||||||
$('#pms_port').val(443).prop('readonly', true);
|
$('#pms_port').val(443).prop('readonly', true);
|
||||||
$('#pms_is_remote_checkbox').prop('checked', true).prop('disabled', true);
|
$('#pms_is_remote_checkbox').prop('checked', true).prop('disabled', true);
|
||||||
|
@ -1882,6 +1882,7 @@ $(document).ready(function() {
|
||||||
$('#cloudManualConnection').show();
|
$('#cloudManualConnection').show();
|
||||||
$('#cloudMonitorUpdates').show();
|
$('#cloudMonitorUpdates').show();
|
||||||
$('#cloudMonitorRemoteAccess').show();
|
$('#cloudMonitorRemoteAccess').show();
|
||||||
|
$('#remoteAccessCheck').hide();
|
||||||
} else {
|
} else {
|
||||||
$('#pms_port').prop('readonly', false);
|
$('#pms_port').prop('readonly', false);
|
||||||
$('#pms_is_remote_checkbox').prop('disabled', false);
|
$('#pms_is_remote_checkbox').prop('disabled', false);
|
||||||
|
@ -1894,6 +1895,7 @@ $(document).ready(function() {
|
||||||
$('#cloudManualConnection').hide();
|
$('#cloudManualConnection').hide();
|
||||||
$('#cloudMonitorUpdates').hide();
|
$('#cloudMonitorUpdates').hide();
|
||||||
$('#cloudMonitorRemoteAccess').hide();
|
$('#cloudMonitorRemoteAccess').hide();
|
||||||
|
remoteAccessEnabledCheck()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
PMSCloudCheck();
|
PMSCloudCheck();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue