From 9e48139bddacc99aea2b1669d3762fef45c6c78a Mon Sep 17 00:00:00 2001 From: Yuchen Wang Date: Wed, 16 Nov 2011 19:45:36 -0500 Subject: [PATCH] CC-3049: Extra grey space in live stream box Fixed by changing new window height --- airtime_mvc/public/js/airtime/dashboard/playlist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/public/js/airtime/dashboard/playlist.js b/airtime_mvc/public/js/airtime/dashboard/playlist.js index 070ac4686..0c0e2f4c6 100644 --- a/airtime_mvc/public/js/airtime/dashboard/playlist.js +++ b/airtime_mvc/public/js/airtime/dashboard/playlist.js @@ -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; });