You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem: When adding the first footnote inside a <blockquote><p>bla bla</p></blockquote>, the <section class="footnotes"> element is placed inside the <blockquote> element instead of placing it at the end of the HTML.
Fix: Just change in plugin.js the function addFootnote:
Problem: When adding the first footnote inside a <blockquote><p>bla bla</p></blockquote>, the <section class="footnotes"> element is placed inside the <blockquote> element instead of placing it at the end of the HTML.
Fix: Just change in plugin.js the function addFootnote:
Change
range.moveToElementEditEnd(range.root);
for:
range.moveToPosition( range.root, CKEDITOR.POSITION_BEFORE_END );
The text was updated successfully, but these errors were encountered: