CC-3049: Extra grey space in live stream box

Fixed by changing new window height
This commit is contained in:
Yuchen Wang 2011-11-16 19:45:36 -05:00
parent 1fd29def27
commit 9e48139bdd
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ function init() {
$('.listen-control-button').click(function() {
if (stream_window == null || stream_window.closed)
stream_window=window.open(baseUrl+"Dashboard/stream-player", 'name', 'width=400,height=216');
stream_window=window.open(baseUrl+"Dashboard/stream-player", 'name', 'width=400,height=178');
stream_window.focus();
return false;
});