fix iframe embed urls
This commit is contained in:
parent
50f7375eed
commit
15c6e2e0d2
@ -27,13 +27,15 @@ export default {
|
||||
// console.log('videolinks', videolinks);
|
||||
for (let link of videolinks){
|
||||
console.log('videolink', link);
|
||||
let iframe;
|
||||
let url, iframe;
|
||||
switch (link[1]) {
|
||||
case 'vimeo.com':
|
||||
iframe = `<iframe src="${link[0]}" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>`
|
||||
url = `https://player.vimeo.com/video/${link[3]}`;
|
||||
iframe = `<iframe src="${url}" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>`
|
||||
break;
|
||||
case 'www.youtube.com':
|
||||
iframe = `<iframe src="${link[0]}" frameborder="0" allowfullscreen></iframe>`
|
||||
url = `https://www.youtube.com/embed/${link[3]}`;
|
||||
iframe = `<iframe src="${url}" frameborder="0" allowfullscreen></iframe>`
|
||||
break;
|
||||
}
|
||||
console.log('iframe', iframe);
|
||||
|
Loading…
x
Reference in New Issue
Block a user