Skip to content

Commit

Permalink
Merge pull request #2128 from owncloud/bugfix/disable-drag-and-drop-o…
Browse files Browse the repository at this point in the history
…n-ie11

Disable drag and drop for ie11
  • Loading branch information
DeepDiver1975 authored Oct 2, 2019
2 parents dae62a5 + 832408a commit 3c0f9f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/files/src/components/FilesAppBar.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="files-app-bar" class="oc-app-bar">
<file-drop :rootPath='item' :url='url' :headers="headers" @success="onFileSuccess" @error="onFileError" @progress="onFileProgress" />
<file-drop v-if="!isIE11()" :rootPath='item' :url='url' :headers="headers" @success="onFileSuccess" @error="onFileError" @progress="onFileProgress" />
<oc-grid flex gutter="small">
<div class="uk-width-expand">
<div class="uk-flex">
Expand Down

0 comments on commit 3c0f9f5

Please sign in to comment.