diff options
| author | Shpuld Shpuldson <shp@cock.li> | 2020-06-10 11:49:04 +0300 |
|---|---|---|
| committer | Shpuld Shpuldson <shp@cock.li> | 2020-06-10 11:49:04 +0300 |
| commit | d3187720c5cb2599b2dc2d83898e3f6d544cb6ae (patch) | |
| tree | 0e2914fdabc906a2e4e53530782f542ca933cfd4 | |
| parent | 1308fdd3bc4cc29264fcac6e3367e7f0cf93d498 (diff) | |
remove useless captures
| -rw-r--r-- | src/components/post_status_form/post_status_form.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/post_status_form/post_status_form.vue b/src/components/post_status_form/post_status_form.vue index 8e71d7b4..873328f5 100644 --- a/src/components/post_status_form/post_status_form.vue +++ b/src/components/post_status_form/post_status_form.vue @@ -6,12 +6,12 @@ <form autocomplete="off" @submit.prevent="postStatus(newStatus)" - @dragover.prevent.capture="fileDrag" + @dragover.prevent="fileDrag" > <div v-show="showDropIcon" class="drop-indicator icon-upload" - @dragleave.capture="fileDragStop" + @dragleave="fileDragStop" @drop.stop="fileDrop" /> <div class="form-group"> |
