PLT-6487 Drag and drop on left hand sidebar leads the picture in the browser (#6315)
Этот коммит содержится в:
коммит произвёл
George Goldberg
родитель
431d89f5f6
Коммит
a3f58b4663
@@ -101,6 +101,17 @@ function preRenderSetup(callwhendone) {
|
|||||||
} else {
|
} else {
|
||||||
I18n.safariFix(afterIntl);
|
I18n.safariFix(afterIntl);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Prevent drag and drop files from navigating away from the app
|
||||||
|
document.addEventListener('drop', (e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
|
});
|
||||||
|
|
||||||
|
document.addEventListener('dragover', (e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function renderRootComponent() {
|
function renderRootComponent() {
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user