mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 08:23:01 +02:00
MDL-83502 course: fix chrome file dropping in course page
This commit is contained in:
parent
ecfcf00d92
commit
a4cf29974f
2
lib/amd/build/local/reactive/dragdrop.min.js
vendored
2
lib/amd/build/local/reactive/dragdrop.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
lib/amd/src/local/reactive/dragdrop.js
vendored
2
lib/amd/src/local/reactive/dragdrop.js
vendored
@ -347,8 +347,8 @@ export default class extends BaseComponent {
|
||||
*/
|
||||
_dragOver(event) {
|
||||
const dropdata = this._processEvent(event);
|
||||
event.dataTransfer.dropEffect = (event.altKey) ? 'copy' : 'move';
|
||||
if (dropdata && !this.dropzonevisible) {
|
||||
event.dataTransfer.dropEffect = (event.altKey) ? 'copy' : 'move';
|
||||
this.dropzonevisible = true;
|
||||
this.element.classList.add(this.classes.DRAGOVER);
|
||||
this._callParentMethod('showDropZone', dropdata, event);
|
||||
|
Loading…
x
Reference in New Issue
Block a user