-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix dragging text around in editor3 when media is enabled (#3081)
* Propagate event if drop was not handled * Avoid dropping items into an atomic block
- Loading branch information
Showing
3 changed files
with
47 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export const htmlComesFromDraftjsEditor = (html) => new DOMParser().parseFromString(html, 'text/html') | ||
export const htmlComesFromDraftjsEditor = (html: string) => new DOMParser().parseFromString(html, 'text/html') | ||
.body.querySelector('[data-offset-key]') != null; |