Fix bug
parent
1fa6bf7e81
commit
90cce68581
|
@ -186,7 +186,7 @@ async function startVideo(){
|
||||||
//player.initialize(document.querySelector("#videoPlayer"), url, true);
|
//player.initialize(document.querySelector("#videoPlayer"), url, true);
|
||||||
//console.log('called startvideo');
|
//console.log('called startvideo');
|
||||||
while(true){
|
while(true){
|
||||||
if(document.querySelector('#videoPlayer') === null)
|
if(!document.querySelector('#videoPlayer'))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
if(window.location.pathname.substring(window.location.pathname.length - 1) !== '/'){
|
if(window.location.pathname.substring(window.location.pathname.length - 1) !== '/'){
|
||||||
|
|
|
@ -12,6 +12,29 @@
|
||||||
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
|
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
|
||||||
xhr.send("");
|
xhr.send("");
|
||||||
}
|
}
|
||||||
|
function makeRequest(method, url, payload) {
|
||||||
|
return new Promise(function (resolve, reject) {
|
||||||
|
let xhr = new XMLHttpRequest();
|
||||||
|
xhr.open(method, url);
|
||||||
|
xhr.onload = function () {
|
||||||
|
if (this.status >= 200 && this.status < 300) {
|
||||||
|
resolve(xhr.response);
|
||||||
|
} else {
|
||||||
|
reject({
|
||||||
|
status: this.status,
|
||||||
|
statusText: xhr.statusText
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
xhr.onerror = function () {
|
||||||
|
reject({
|
||||||
|
status: this.status,
|
||||||
|
statusText: xhr.statusText
|
||||||
|
});
|
||||||
|
};
|
||||||
|
!payload ? xhr.send() : xhr.send(payload);
|
||||||
|
});
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
{% block head %}
|
{% block head %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
//player.initialize(document.querySelector("#videoPlayer"), url, true);
|
//player.initialize(document.querySelector("#videoPlayer"), url, true);
|
||||||
//console.log('called startvideo');
|
//console.log('called startvideo');
|
||||||
while(true){
|
while(true){
|
||||||
if(document.querySelector('#videoPlayer') === null)
|
if(!document.querySelector('#videoPlayer'))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
if(window.location.pathname.substring(window.location.pathname.length - 1) !== '/'){
|
if(window.location.pathname.substring(window.location.pathname.length - 1) !== '/'){
|
||||||
|
|
Reference in New Issue