I have a module that has Dropzone. In order to prevent the entire document from default file drop behavior I have to add the following:
$(document).on('drop dragover', function(e) { e.preventDefault(); });
What this does is allows Dropzone to function only inside of the designated dropzone area and disables the rest of the page.
This works fine in DNN 6 - DNN 7.1.2
However in DNN 7.2.2 it causes the entire page to NOT allow drag and drop.
I'm assuming it's something new in the core DNN scripts that's causing the issue.
Can anyone shed some light on this? I know it's somewhat of a blind question.