This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Global storage for processed files | |
window.cimoProcessedFiles = new Map(); | |
document.addEventListener('drop', yourHandler, { capture: true }); | |
window.parent.document.addEventListener('drop', yourHandler, { capture: true }); | |
// Your handler should run before Divi's | |
function yourHandler(event) { | |
// Check if this is a file drop | |
if (event.dataTransfer.files && event.dataTransfer.files.length > 0) { |