From a5234303ee152e0f24d626425809d918b10d9b1f Mon Sep 17 00:00:00 2001 From: Alib Date: Thu, 18 Mar 2010 11:07:37 +0100 Subject: fix type --- js/istreamdev.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/istreamdev.js b/js/istreamdev.js index 8a62ace..16144d4 100644 --- a/js/istreamdev.js +++ b/js/istreamdev.js @@ -184,9 +184,9 @@ var dataString = "action=getRunningSessions"; session = broadcast.session; name = broadcast.name; type = broadcast.type; - if (type == 'tv') { var pic='tv.png';var typerunning = 'TV:' } - else if (type == 'rec') { var pic='record.png'; var typerunning = 'REC:' } - else if (type == 'vid') { var pic='video.png'; var typerunning = 'VID:' } + if (type == 'tv') { var pic='tv.png';var typerunning = 'Tv: ' } + else if (type == 'rec') { var pic='record.png'; var typerunning = 'Rec: ' } + else if (type == 'vid') { var pic='video.png'; var typerunning = 'Vid: ' } $('#home #runningsessions').append('
  • ' + typerunning + name + '
  • '); }); $('#home #runningsessions').append('
  • Stop all sessions
  • '); -- cgit v1.2.3