logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 57b82e9236637ce7e0902948dcb0f30bade28dfa
parent: 182eab051ded319a5fd2a6bf5c216621f76446e2
Author: Shpuld Shpludson <shp@cock.li>
Date:   Mon, 25 Mar 2019 16:52:25 +0000

Merge branch 'file-paste' into 'develop'

#455 - prevent text pasting if image is pasted

Closes #455

See merge request pleroma/pleroma-fe!705

Diffstat:

Msrc/components/post_status_form/post_status_form.js2++
1 file 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 @@ -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.