CC-3246: Hardware audio output cannot be switched off
- fixed
This commit is contained in:
parent
f9aab1b5ac
commit
bcbbf42f62
3 changed files with 16 additions and 4 deletions
|
@ -125,6 +125,12 @@ $(document).ready(function() {
|
|||
rebuildStreamURL($(this))
|
||||
})
|
||||
|
||||
if(!$("#output_sound_device").is(':checked')){
|
||||
$("select[id=output_sound_device_type]").attr('disabled', 'disabled')
|
||||
}else{
|
||||
$("select[id=output_sound_device_type]").removeAttr('disabled')
|
||||
}
|
||||
|
||||
$("#output_sound_device").change(function(){
|
||||
if($(this).is(':checked')){
|
||||
$("select[id=output_sound_device_type]").removeAttr('disabled')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue