fix video play problem with newer webkit version and webkit player

This commit is contained in:
rimach 2011-11-24 22:25:38 +01:00
parent 32659978c4
commit 65ce3c84d2
1 changed files with 2 additions and 2 deletions

View File

@ -121,8 +121,8 @@ sup {
}
switch(state){
case 'init':
vid.src = path;
vid2.src = path;
vid.src = 'file:///' + path;
vid2.src = 'file:///' + path;
if(loop == null) loop = false;
vid.looping = loop;
vid2.looping = loop;