Merge branch 'file-paste' into 'develop'

#455 - prevent text pasting if image is pasted

Closes #455

See merge request pleroma/pleroma-fe!705
This commit is contained in:
Shpuld Shpludson 2019-03-25 16:52:25 +00:00
commit 57b82e9236

View file

@ -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.