Add allowfullscreen to iframe embedding options

This commit is contained in:
2024-05-29 17:13:37 +02:00
parent a509713db3
commit a55dfcebef
2 changed files with 4 additions and 2 deletions

View File

@@ -56,7 +56,8 @@ let embed_iframe = () => {
embed_html = `<iframe ` + embed_html = `<iframe ` +
`src="${url}" ` + `src="${url}" ` +
`style="border: none; width: 800px; max-width: 100%; height: 600px; max-height: 100%; border-radius: 8px;"` + `style="border: none; width: 800px; max-width: 100%; height: 600px; max-height: 100%; border-radius: 8px;" ` +
`allowfullscreen` +
`></iframe>` `></iframe>`
} }
let embed_hotlink = () => { let embed_hotlink = () => {

View File

@@ -24,7 +24,8 @@ let embed_iframe = file => {
let url = domain_url()+"/d/"+file.id let url = domain_url()+"/d/"+file.id
embed_html = `<iframe ` + embed_html = `<iframe ` +
`src="${url}" ` + `src="${url}" ` +
`style="border: none; width: 800px; max-width: 100%; height: 600px; max-height: 100%; border-radius: 8px;"` + `style="border: none; width: 800px; max-width: 100%; height: 600px; max-height: 100%; border-radius: 8px; "` +
`allowfullscreen` +
`></iframe>` `></iframe>`
} }