CC-2438: Add a button to listen to the stream immediately

-Streams selectable by their description
-Repeatedly clicking on the ON-AIR, focus()es the window
 instead of reloading it.
This commit is contained in:
martin 2011-09-30 12:58:49 -04:00
parent 0613c6db3a
commit a31920e982
2 changed files with 6 additions and 3 deletions

View file

@ -249,6 +249,8 @@ function setupQtip(){
}
}
var stream_window = null;
function init() {
//begin producer "thread"
getScheduleFromServer();
@ -259,8 +261,9 @@ function init() {
setupQtip();
$('#on-air-info').click(function() {
newwindow=window.open("/Dashboard/stream-player", 'name', 'width=400,height=216');
if (window.focus) {newwindow.focus()}
if (stream_window == null || stream_window.closed)
stream_window=window.open("/Dashboard/stream-player", 'name', 'width=400,height=216');
stream_window.focus();
return false;
});
}