ckeditor-youtube-plugin icon indicating copy to clipboard operation
ckeditor-youtube-plugin copied to clipboard

iframe wrapper doesn't work properly

Open akpp28 opened this issue 6 years ago • 0 comments

I want my uploaded video to be of 100% width and the height should remain proportional. In order to reach it, I use flag "config.youtube_responsive = true;". After I've uploaded video, I want to add some text. In order to do that I click on the right side of the image and start typing. As the result I get the following: div with class "youtube-embed-wrapper" copies each time when I click “enter”. Due to this, big indentations are left in the text:

<div class="youtube-embed-wrapper" style="...">
	<iframe ...>...</iframe>
</div>

<div class="youtube-embed-wrapper" style="...">my text</div> **(is created after press enter)**
<div class="youtube-embed-wrapper" style="...">my text2</div> **(is created after press enter)**

akpp28 avatar Sep 23 '19 20:09 akpp28