destructing binding is not supported by IE11

This commit is contained in:
meow 2022-04-20 14:56:00 +03:00
parent 7450cb1f21
commit 1e60b9a322
1 changed files with 3 additions and 1 deletions

View File

@ -394,7 +394,9 @@ if (!video_data.params.listen && video_data.params.annotations) {
};
window.addEventListener('__ar_annotation_click', function (e) {
const { url, target, seconds } = e.detail;
const url = e.detail.url,
target = e.detail.target,
seconds = e.detail.seconds;
var path = new URL(url);
if (path.href.startsWith('https://www.youtube.com/watch?') && seconds) {