forward script params to video url
This commit is contained in:
parent
63f9fb52a5
commit
2919e74d4e
2 changed files with 9 additions and 2 deletions
|
@ -285,6 +285,13 @@ function mistembed(streamname) {
|
|||
source.url += urlappend;
|
||||
source.relurl += urlappend;
|
||||
}
|
||||
else if (me.src.indexOf('?') != -1) {
|
||||
var params = me.src.split('?');
|
||||
params.shift();
|
||||
params.join('?');
|
||||
source.url += '?'+params;
|
||||
source.relurl += '?'+params;
|
||||
}
|
||||
buildPlayer(source, container, video.width, video.height, vtype);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue