Revert "Merge branch 'ryerson-history'"
This reverts commita554c6f72c
, reversing changes made to2a0c9769aa
.
This commit is contained in:
parent
a554c6f72c
commit
c8b73850b9
200 changed files with 5491 additions and 41784 deletions
|
@ -13,11 +13,11 @@ function showErrorSections() {
|
|||
}
|
||||
function rebuildStreamURL(ele){
|
||||
var div = ele.closest("div")
|
||||
host = div.find("input[id$=-host]").val()
|
||||
port = div.find("input[id$=-port]").val()
|
||||
mount = div.find("input[id$=-mount]").val()
|
||||
host = div.find("input:[id$=-host]").val()
|
||||
port = div.find("input:[id$=-port]").val()
|
||||
mount = div.find("input:[id$=-mount]").val()
|
||||
streamurl = ""
|
||||
if(div.find("select[id$=-output]").val()=="icecast"){
|
||||
if(div.find("select:[id$=-output]").val()=="icecast"){
|
||||
streamurl = "http://"+host
|
||||
if($.trim(port) != ""){
|
||||
streamurl += ":"+port
|
||||
|
@ -180,15 +180,15 @@ function setupEventListeners() {
|
|||
rebuildStreamURL($(this));
|
||||
})
|
||||
|
||||
$("input[id$=-host], input[id$=-port], input[id$=-mount]").keyup(function(){
|
||||
$("input:[id$=-host], input:[id$=-port], input:[id$=-mount]").keyup(function(){
|
||||
rebuildStreamURL($(this));
|
||||
});
|
||||
|
||||
$("input[id$=-port]").keypress(function(e){
|
||||
$("input:[id$=-port]").keypress(function(e){
|
||||
validate($(this),e);
|
||||
});
|
||||
|
||||
$("select[id$=-output]").change(function(){
|
||||
$("select:[id$=-output]").change(function(){
|
||||
rebuildStreamURL($(this));
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue