Merge pull request #1885 from rgarmsen2295/plt-406
PLT-406 Fixes issues with drag and drop overlay in IE11
Этот коммит содержится в:
@@ -1309,6 +1309,10 @@ export function fillArray(value, length) {
|
||||
// Checks if a data transfer contains files not text, folders, etc..
|
||||
// Slightly modified from http://stackoverflow.com/questions/6848043/how-do-i-detect-a-file-is-being-dragged-rather-than-a-draggable-element-on-my-pa
|
||||
export function isFileTransfer(files) {
|
||||
if (isBrowserIE()) {
|
||||
return files.types != null && files.types.contains('Files');
|
||||
}
|
||||
|
||||
return files.types != null && (files.types.indexOf ? files.types.indexOf('Files') !== -1 : files.types.contains('application/x-moz-file'));
|
||||
}
|
||||
|
||||
|
||||
@@ -183,6 +183,7 @@ body.ios {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.overlay__files {
|
||||
|
||||
Ссылка в новой задаче
Block a user