mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-03 07:55:36 +00:00
repair code error
This commit is contained in:
@@ -546,7 +546,7 @@ class DirentListView extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
onTableDragOver = (e) => {
|
onTableDragOver = (e) => {
|
||||||
if (Utils.isIEBrower) {
|
if (Utils.isIEBrower()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
@@ -554,7 +554,7 @@ class DirentListView extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
onTableDragLeave = (e) => {
|
onTableDragLeave = (e) => {
|
||||||
if (Utils.isIEBrower) {
|
if (Utils.isIEBrower()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (e.target.className === 'table-container table-drop-active') {
|
if (e.target.className === 'table-container table-drop-active') {
|
||||||
@@ -563,7 +563,7 @@ class DirentListView extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
tableDrop = (e) => {
|
tableDrop = (e) => {
|
||||||
if (Utils.isIEBrower) {
|
if (Utils.isIEBrower()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
e.persist();
|
e.persist();
|
||||||
|
Reference in New Issue
Block a user