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
{{ message }}
This repository was archived by the owner on Mar 25, 2026. It is now read-only.
This is because this line in create_basic: content = target.children().clone(true,true);
Should be: content = target.contents().clone(true,true);
Otherwise we're not grabbing top-level text nodes. Need to review the other modal creation methods for the same issue too.
Until this is fixed, an example like the above will show an empty modal. You can get around that by wrapping "Inline content goes here..." with an element. E.g. div, span, p
The Inline Content example (and others) are actually wrong at the moment. E.g.
This is because this line in create_basic:
content = target.children().clone(true,true);Should be:
content = target.contents().clone(true,true);Otherwise we're not grabbing top-level text nodes. Need to review the other modal creation methods for the same issue too.
Until this is fixed, an example like the above will show an empty modal. You can get around that by wrapping "Inline content goes here..." with an element. E.g. div, span, p