CC-4687: System -> Stream: Cannot expand/shrink Stream 1/2/3 settings after clicking Save

-fixed
This commit is contained in:
denise 2012-11-12 12:06:22 -05:00
parent ef8f8dfa75
commit 0a0cf70046
1 changed files with 7 additions and 1 deletions

View File

@ -171,7 +171,7 @@ function setLiveSourceConnectionOverrideListener(){
} }
$(document).ready(function() { function setupEventListeners() {
// initial stream url // initial stream url
$("dd[id=outputStreamURL-element]").each(function(){ $("dd[id=outputStreamURL-element]").each(function(){
rebuildStreamURL($(this)) rebuildStreamURL($(this))
@ -388,7 +388,13 @@ $(document).ready(function() {
$.post(url, {format:"json", data: data}, function(data){ $.post(url, {format:"json", data: data}, function(data){
var json = $.parseJSON(data); var json = $.parseJSON(data);
$('#content').empty().append(json.html); $('#content').empty().append(json.html);
setupEventListeners();
}); });
} }
}); });
}
$(document).ready(function() {
setupEventListeners();
}); });