diff options
-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>');
|