Skip to content

Commit

Permalink
Fixed drag&drop for Opera 12.
Browse files Browse the repository at this point in the history
  • Loading branch information
blueimp committed Jun 15, 2012
1 parent 388d5fb commit 140e7ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/jquery.fileupload.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* jQuery File Upload Plugin 5.11.2
* jQuery File Upload Plugin 5.11.3
* https://github.com/blueimp/jQuery-File-Upload
*
* Copyright 2010, Sebastian Tschan
Expand Down Expand Up @@ -838,7 +838,7 @@
return false;
}
if (dataTransfer) {
dataTransfer.dropEffect = dataTransfer.effectAllowed = 'copy';
dataTransfer.dropEffect = 'copy';
}
e.preventDefault();
},
Expand Down

0 comments on commit 140e7ee

Please sign in to comment.