1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-31 22:54:11 +00:00

repair code error

This commit is contained in:
shanshuirenjia
2019-06-04 17:39:02 +08:00
parent f5df909e36
commit 89dcbe58a0

View File

@@ -546,7 +546,7 @@ class DirentListView extends React.Component {
}
onTableDragOver = (e) => {
if (Utils.isIEBrower) {
if (Utils.isIEBrower()) {
return false;
}
e.preventDefault();
@@ -554,7 +554,7 @@ class DirentListView extends React.Component {
}
onTableDragLeave = (e) => {
if (Utils.isIEBrower) {
if (Utils.isIEBrower()) {
return false;
}
if (e.target.className === 'table-container table-drop-active') {
@@ -563,7 +563,7 @@ class DirentListView extends React.Component {
}
tableDrop = (e) => {
if (Utils.isIEBrower) {
if (Utils.isIEBrower()) {
return false;
}
e.persist();