diff options
author | Alib <aliboba@free.fr> | 2010-02-25 15:21:44 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-02-25 15:21:44 +0100 |
commit | 9851638e01738e916ba5f1f64da9a77f9ae09b38 (patch) | |
tree | 9ec69e873ac2efd212ce323e7822e6f2d8558de5 /javascript | |
parent | f9d9af88675e9b245716e97b762444adb5178072 (diff) | |
download | istreamdev-9851638e01738e916ba5f1f64da9a77f9ae09b38.tar.gz istreamdev-9851638e01738e916ba5f1f64da9a77f9ae09b38.tar.bz2 |
corrected functions.js
Diffstat (limited to 'javascript')
-rwxr-xr-x | javascript/functions.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/javascript/functions.js b/javascript/functions.js index e9c41d1..c62efbd 100755 --- a/javascript/functions.js +++ b/javascript/functions.js @@ -171,6 +171,7 @@ function checkform() {
alert('Select a channel to record');
return false;
+t
}
else if ( document.timer.timer_date.value=="" )
{
@@ -195,7 +196,7 @@ function checkform() function addplayer(path,name,track) {
- playercode= "<embed target='myself' src='" + track[0] + "' width='0' height='0' autoplay='false' name='player' type='audio/mp3' loop='true' controller='false' ";
+ playercode= "<embed src='" + track[0] + "' width='0' height='0' autoplay='false' name='player' type='audio/mp3' loop='true' controller='false' ";
for ( var i=1; i<track.length; i+=1 ){
playercode += "qtnext" + i + "='<" + track[i] + ">' ";
|