hide settings buttons rather than disable for non Local monitors
This commit is contained in:
parent
5047c28157
commit
824f38c746
|
@ -946,7 +946,8 @@ function initPage() {
|
||||||
});
|
});
|
||||||
|
|
||||||
// Only enable the settings button for local cameras
|
// Only enable the settings button for local cameras
|
||||||
settingsBtn.prop('disabled', !(monitorType == 'Local' && canViewControl));
|
settingsBtn.prop('disabled', !canViewControl);
|
||||||
|
if ( monitorType != 'Local' ) settingsBtn.hide();
|
||||||
} // initPage
|
} // initPage
|
||||||
|
|
||||||
// Kick everything off
|
// Kick everything off
|
||||||
|
|
Loading…
Reference in New Issue