webfashionist / RichText

WYSIWYG editor developed as jQuery plugin
GNU Affero General Public License v3.0
112 stars 62 forks source link

Problem with large document #102

Closed aahondema closed 1 year ago

aahondema commented 1 year ago

Hello,

I have to download a rather large template (about 3 pages) into the editor. The file is loaded in its entirely but the richttext bottom line with the undo button is added at about 1 third from the top. The rest of the template is loaded below the richttext bottom line. My settings are default: height 0, heightPercentage 0, adaptiveHeight false. Any idea what caused this behaviour?

richtext issue

webfashionist commented 1 year ago

It looks like the code you are pasting into the editor has too many closing div tags. Resulting in the editor container closing and the rest of the code being displayed below the editor.

But I can only guess without seeing the source code of the page

aahondema commented 1 year ago

Hi Bob,

You nailed it! There was indeed 1

to much. Thanks for pointing me to this possibility, it would probably have cost me several hours to find it!

Adrian

Van: Bob Verzonden: dinsdag 1 augustus 2023 21:29 Aan: webfashionist/RichText CC: aahondema; Author Onderwerp: Re: [webfashionist/RichText] Problem with large document (Issue #102)

It looks like the code you are pasting into the editor has too many closing div tags. Resulting in the editor container closing and the rest of the code being displayed below the editor. But I can only guess without seeing the source code of the page — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>

webfashionist commented 1 year ago

Hi,

I'm happy that I could help you out!