liberty-engine
liberty-engine copied to clipboard
영상 표출 관련
- 영상 삽입시 유튜브는 전체화면이 불가능합니다.
https://github.com/librewiki/liberty-engine/blob/master/extensions/embed-video/index.js에서
7번째 줄
return
<iframe class="embed-video embed-video-youtube" src="//www.youtube-nocookie.com/embed/${id}" width="${width}" height="${height}"> </iframe>;
를
return
<iframe class="embed-video embed-video-youtube" src="//www.youtube-nocookie.com/embed/${id}" width="${width}" height="${height}" allowfullscreen > </iframe>;
으로 수정해서 전체화면으로 사용 가능하게 해주시면 감사하겠습니다.
- 영상의 높이가 index.js에 명시된 높이를 무시하고 weight 640 기준 height가 150이 나옵니다. 이부분의 수정이 필요합니다.