diff options
author | Alib <aliboba@free.fr> | 2010-03-19 20:18:42 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-03-19 20:18:42 +0100 |
commit | 47df9936768e093e30ed38001fa8104fd57aeec9 (patch) | |
tree | 0daa44c98954553cca8ae14353adf58b214efb35 /js | |
parent | 70da7bab0caf7327980aa8ee630d4ad3f8065ed7 (diff) | |
download | istreamdev-47df9936768e093e30ed38001fa8104fd57aeec9.tar.gz istreamdev-47df9936768e093e30ed38001fa8104fd57aeec9.tar.bz2 |
corrected error status showing
Diffstat (limited to 'js')
-rw-r--r-- | js/istreamdev.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/istreamdev.js b/js/istreamdev.js index 5761dbb..8dc2024 100644 --- a/js/istreamdev.js +++ b/js/istreamdev.js @@ -478,7 +478,7 @@ function playvideo(session,name) { var thumbwidth = $('#streaming span[rel="thumbwidth"]').text();
var thumbheight = $('#streaming span[rel="thumbheight"]').text();
$('#streaming ul[class="streamstatus"]').find('span[class="mode"]').html(message);
- if ( status == "ready" ) {
+ if ( status == "ready" || status == "error" ) {
$('#player').html('<video id="videofeed" width="' + thumbwidth + '" height="' + thumbheight + '" poster="ram/session' + session + '/thumb.png" src="' + url + '" ></video><span rel="ready"></span>');
return false;
}
|