...even less eager
This commit is contained in:
parent
6e1a6d1ad6
commit
a71d2fa226
|
@ -459,7 +459,11 @@
|
||||||
if (sorting) {
|
if (sorting) {
|
||||||
sorting = false;
|
sorting = false;
|
||||||
docRootObserver.takeRecords();
|
docRootObserver.takeRecords();
|
||||||
|
if (!restorationLimitExceeded()) {
|
||||||
start();
|
start();
|
||||||
|
} else {
|
||||||
|
setTimeout(start, 1000);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function isMovable(el) {
|
function isMovable(el) {
|
||||||
|
@ -474,9 +478,6 @@
|
||||||
}
|
}
|
||||||
function moveAfter(el, expected) {
|
function moveAfter(el, expected) {
|
||||||
if (!sorting) {
|
if (!sorting) {
|
||||||
if (restorationLimitExceeded()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
sorting = true;
|
sorting = true;
|
||||||
docRootObserver.stop();
|
docRootObserver.stop();
|
||||||
}
|
}
|
||||||
|
@ -493,11 +494,7 @@
|
||||||
restorationCounter = 0;
|
restorationCounter = 0;
|
||||||
}
|
}
|
||||||
lastRestorationTime = t;
|
lastRestorationTime = t;
|
||||||
if (++restorationCounter > 10) {
|
return ++restorationCounter > 2;
|
||||||
sorting = false;
|
|
||||||
setTimeout(start, 1000);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user