Update airtime_mvc/public/js/airtime/preferences/streamsetting.js
Update statement to remove "disabled" attribute to be compatible with chrome and firefox browser. Perform commit in devel branc as requested in: https://github.com/sourcefabric/Airtime/pull/21#issuecomment-11144375
This commit is contained in:
parent
efa5f6ff6c
commit
5e9d5bd71a
1 changed files with 2 additions and 2 deletions
|
@ -39,8 +39,8 @@ function restrictOggBitrate(ele, on){
|
|||
div.find("select[id$=data-bitrate]").find("option[value='24']").attr("disabled","disabled");
|
||||
div.find("select[id$=data-bitrate]").find("option[value='32']").attr("disabled","disabled");
|
||||
}else{
|
||||
div.find("select[id$=data-bitrate]").find("option[value='24']").attr("disabled","");
|
||||
div.find("select[id$=data-bitrate]").find("option[value='32']").attr("disabled","");
|
||||
div.find("select[id$=data-bitrate]").find("option[value='24']").removeAttr("disabled");
|
||||
div.find("select[id$=data-bitrate]").find("option[value='32']").removeAttr("disabled");
|
||||
}
|
||||
}
|
||||
function hideForShoutcast(ele){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue