1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-06 03:50:04 +02:00
(result) => {} is an arrow function which is completely unsupported in IE. To fix this you'll have to use a traditional anonymous function:
This commit is contained in:
DanielnetoDotCom 2020-09-28 10:22:33 -03:00
parent 11b1ee26f7
commit 6a55614103
25 changed files with 32 additions and 33 deletions

View file

@ -556,8 +556,7 @@ function playerPlay(currentTime) {
className: "btn-danger",
},
}
})
.then((value) => {
}).then(function(value) {
switch (value) {
case "unmute":
player.muted(false);