mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-12 08:16:06 -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();
|
||||
|
||||
function PMSCloudCheck () {
|
||||
function PMSCloudCheck() {
|
||||
if ($('#pms_is_cloud').val() === "1") {
|
||||
$('#pms_port').val(443).prop('readonly', true);
|
||||
$('#pms_is_remote_checkbox').prop('checked', true).prop('disabled', true);
|
||||
|
@ -1882,6 +1882,7 @@ $(document).ready(function() {
|
|||
$('#cloudManualConnection').show();
|
||||
$('#cloudMonitorUpdates').show();
|
||||
$('#cloudMonitorRemoteAccess').show();
|
||||
$('#remoteAccessCheck').hide();
|
||||
} else {
|
||||
$('#pms_port').prop('readonly', false);
|
||||
$('#pms_is_remote_checkbox').prop('disabled', false);
|
||||
|
@ -1894,6 +1895,7 @@ $(document).ready(function() {
|
|||
$('#cloudManualConnection').hide();
|
||||
$('#cloudMonitorUpdates').hide();
|
||||
$('#cloudMonitorRemoteAccess').hide();
|
||||
remoteAccessEnabledCheck()
|
||||
}
|
||||
}
|
||||
PMSCloudCheck();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue