You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
432 B
22 lines
432 B
/**
|
|
* Checks if the browser supports Drag & Drop (not supported on mobile devices, for example).
|
|
*
|
|
* @returns {boolean}
|
|
*/
|
|
export default function isDragDropSupported () {
|
|
const div = document.body
|
|
|
|
if (!('draggable' in div) || !('ondragstart' in div && 'ondrop' in div)) {
|
|
return false
|
|
}
|
|
|
|
if (!('FormData' in window)) {
|
|
return false
|
|
}
|
|
|
|
if (!('FileReader' in window)) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|