Update player.js

don't recreate everything just to repeat the song, just change the current time and hit play
This commit is contained in:
GM-Script-Writer-62850 2014-06-03 20:53:08 -04:00
parent dae0538aa0
commit 12f708767e
1 changed files with 12 additions and 10 deletions

View File

@ -138,17 +138,19 @@ function init(){
"repeat":false
};
audio.addEventListener("ended",function(){
if(repeat.checked){
audio.currentTime=0;
return audio.play();
}
var next=track;
if(!repeat.checked){
if(shuffle.checked){
next=randInt(0,music.length-1);
}
else if(track+1 < music.length){
next++;
}
else{
next=0;
}
if(shuffle.checked){
next=randInt(0,music.length-1);
}
else if(track+1 < music.length){
next++;
}
else{
next=0;
}
sendEvt(music[next],'click');
},false);