summaryrefslogtreecommitdiff
path: root/src/client/app/common/views/widgets
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-12-06 16:19:12 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-12-06 16:19:12 +0900
commit5d3d8dffd6cc2175f2fe238a7f369facfb5806f7 (patch)
tree4b668ddf412c974329c04dcc2654a77a1831fd94 /src/client/app/common/views/widgets
parentRefactor (diff)
downloadsharkey-5d3d8dffd6cc2175f2fe238a7f369facfb5806f7.tar.gz
sharkey-5d3d8dffd6cc2175f2fe238a7f369facfb5806f7.tar.bz2
sharkey-5d3d8dffd6cc2175f2fe238a7f369facfb5806f7.zip
Update photo-stream.vue
Diffstat (limited to 'src/client/app/common/views/widgets')
-rw-r--r--src/client/app/common/views/widgets/photo-stream.vue5
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>