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:
parent
11b1ee26f7
commit
6a55614103
25 changed files with 32 additions and 33 deletions
|
@ -556,8 +556,7 @@ function playerPlay(currentTime) {
|
|||
className: "btn-danger",
|
||||
},
|
||||
}
|
||||
})
|
||||
.then((value) => {
|
||||
}).then(function(value) {
|
||||
switch (value) {
|
||||
case "unmute":
|
||||
player.muted(false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue