diff options
author | Alib <aliboba@free.fr> | 2010-03-18 11:07:37 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-03-18 11:07:37 +0100 |
commit | a5234303ee152e0f24d626425809d918b10d9b1f (patch) | |
tree | 2f91f8264114906b64c9bbecce495347001afc04 /js/istreamdev.js | |
parent | 2dbbd68202142e08e32fda6f3fd1401b7fe3e9b8 (diff) | |
download | istreamdev-a5234303ee152e0f24d626425809d918b10d9b1f.tar.gz istreamdev-a5234303ee152e0f24d626425809d918b10d9b1f.tar.bz2 |
fix type
Diffstat (limited to 'js/istreamdev.js')
-rw-r--r-- | js/istreamdev.js | 6 |
1 files 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('<li class="arrow"><a rel="' + session + '" href="#"><img class="menuicon" src="img/' + pic + '" /><span class="menuname">' + typerunning + name + '</span></a></li>');
});
$('#home #runningsessions').append('<li><a rel="killsessions" href="#"><span class="menuname">Stop all sessions</span></a></li>');
|