backedがtrue→falseになってもexecuteQueue

This commit is contained in:
tamaina 2023-07-17 10:24:18 +00:00
parent 41824ae383
commit 31b62db14b
1 changed files with 9 additions and 0 deletions

View File

@ -204,6 +204,15 @@ watch($$(weakBacked), () => {
}
});
/**
* backedがtruefalseになってもexecuteQueue
*/
watch($$(backed), () => {
if (!backed) {
executeQueue();
}
});
/**
* onScrollTop/onScrollBottomでbackedを厳密に検出する
*/