From 5d3d8dffd6cc2175f2fe238a7f369facfb5806f7 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 6 Dec 2018 16:19:12 +0900 Subject: [PATCH] Update photo-stream.vue --- src/client/app/common/views/widgets/photo-stream.vue | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/client/app/common/views/widgets/photo-stream.vue b/src/client/app/common/views/widgets/photo-stream.vue index 13bae64bd..516c62632 100644 --- a/src/client/app/common/views/widgets/photo-stream.vue +++ b/src/client/app/common/views/widgets/photo-stream.vue @@ -10,7 +10,6 @@ :style="`background-image: url(${image.thumbnailUrl || image.url})`" draggable="true" @dragstart="onDragstart(image, $event)" - @dragend="onDragend" >

{{ $t('no-photos') }}

@@ -78,10 +77,6 @@ export default define({ e.dataTransfer.effectAllowed = 'move'; e.dataTransfer.setData('mk_drive_file', JSON.stringify(file)); }, - - onDragend(e) { - this.browser.isDragSource = false; - }, } });