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
When we enable selection on many paragraphs at once, we should't allow to create selection between several paragraphs - it may contain other paragraphs' siblings.
$('p').customSelection();
The problem is wider. We should ensure that always only one pair of markers is visible at a time, even if we attach custom selection on contents of different windows (e.g. iframe's). It also means that every document-connected operation (e.g document.createElement()) should be executed in context of window containing selected element.
The text was updated successfully, but these errors were encountered:
When we enable selection on many paragraphs at once, we should't allow to create selection between several paragraphs - it may contain other paragraphs' siblings.
The problem is wider. We should ensure that always only one pair of markers is visible at a time, even if we attach custom selection on contents of different windows (e.g. iframe's). It also means that every document-connected operation (e.g
document.createElement()
) should be executed in context of window containing selected element.The text was updated successfully, but these errors were encountered: