]> source.dussan.org Git - redmine.git/commitdiff
Merged r19566 from trunk to 4.1-stable (#32656).
authorGo MAEDA <maeda@farend.jp>
Mon, 9 Mar 2020 10:56:35 +0000 (10:56 +0000)
committerGo MAEDA <maeda@farend.jp>
Mon, 9 Mar 2020 10:56:35 +0000 (10:56 +0000)
git-svn-id: http://svn.redmine.org/redmine/branches/4.1-stable@19567 e93f8b46-1217-0410-a6f0-8f06a7374b81

public/javascripts/attachments.js

index dd7a8e30e2ddc9da81380639c3415e46ae0ab5c3..39315d8f8b0f94983c0c4661e59a02ef01a392d6 100644 (file)
@@ -185,6 +185,7 @@ handleFileDropEvent.target = '';
 function dragOverHandler(e) {
   $(this).addClass('fileover');
   blockEventPropagation(e);
+  e.dataTransfer.dropEffect = 'copy';
 }
 
 function dragOutHandler(e) {
@@ -195,6 +196,7 @@ function dragOutHandler(e) {
 function setupFileDrop() {
   if (window.File && window.FileList && window.ProgressEvent && window.FormData) {
 
+    $.event.fixHooks.dragover = { props: [ 'dataTransfer' ] };
     $.event.fixHooks.drop = { props: [ 'dataTransfer' ] };
 
     $('form div.box:not(.filedroplistner)').has('input:file.filedrop').each(function() {