diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-06 16:19:12 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-06 16:19:12 +0900 |
| commit | 5d3d8dffd6cc2175f2fe238a7f369facfb5806f7 (patch) | |
| tree | 4b668ddf412c974329c04dcc2654a77a1831fd94 /src/client/app | |
| parent | Refactor (diff) | |
| download | sharkey-5d3d8dffd6cc2175f2fe238a7f369facfb5806f7.tar.gz sharkey-5d3d8dffd6cc2175f2fe238a7f369facfb5806f7.tar.bz2 sharkey-5d3d8dffd6cc2175f2fe238a7f369facfb5806f7.zip | |
Update photo-stream.vue
Diffstat (limited to 'src/client/app')
| -rw-r--r-- | src/client/app/common/views/widgets/photo-stream.vue | 5 |
1 files changed, 0 insertions, 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 13bae64bd0..516c626323 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" ></div> </div> <p :class="$style.empty" v-if="!fetching && images.length == 0">{{ $t('no-photos') }}</p> @@ -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; - }, } }); </script> |