diff options
| author | nik <nik@telekem.net> | 2019-03-23 22:45:24 -0500 |
|---|---|---|
| committer | nik <nik@telekem.net> | 2019-03-23 22:45:24 -0500 |
| commit | b241539d4df0c3a277723cb308c39a5e9665b7b1 (patch) | |
| tree | c93cdee4f891cac6f2023c0f666615e0498b6f59 /src | |
| parent | f86a5dc80421f496a893efaa98f12f831da0adcb (diff) | |
prevent text pasting if image is pasted
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/post_status_form/post_status_form.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index 1f0df35a..c5f30ca6 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -296,6 +296,8 @@ const PostStatusForm = { }, paste (e) { if (e.clipboardData.files.length > 0) { + // prevent pasting of file as text + e.preventDefault() // Strangely, files property gets emptied after event propagation // Trying to wrap it in array doesn't work. Plus I doubt it's possible // to hold more than one file in clipboard. |
