CC-3246: Hardware audio output cannot be switched off

- fixed
This commit is contained in:
James 2012-01-13 16:56:02 -05:00
parent f9aab1b5ac
commit bcbbf42f62
3 changed files with 16 additions and 4 deletions

View file

@ -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')