mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
fix: pasting images on firefox (#4085)
This commit is contained in:
parent
163ad1f4c4
commit
ba35eb8f8c
1 changed files with 5 additions and 2 deletions
|
@ -1257,10 +1257,13 @@ class App extends React.Component<AppProps, AppState> {
|
|||
return;
|
||||
}
|
||||
|
||||
const data = await parseClipboard(event);
|
||||
|
||||
// must be called in the same frame (thus before any awaits) as the paste
|
||||
// event else some browsers (FF...) will clear the clipboardData
|
||||
// (something something security)
|
||||
let file = event?.clipboardData?.files[0];
|
||||
|
||||
const data = await parseClipboard(event);
|
||||
|
||||
if (!file && data.text) {
|
||||
const string = data.text.trim();
|
||||
if (string.startsWith("<svg") && string.endsWith("</svg>")) {
|
||||
|
|
Loading…
Add table
Reference in a new issue