backedがtrue→falseになってもexecuteQueue
This commit is contained in:
parent
41824ae383
commit
31b62db14b
1 changed files with 9 additions and 0 deletions
|
@ -204,6 +204,15 @@ watch($$(weakBacked), () => {
|
|||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* backedがtrue→falseになってもexecuteQueue
|
||||
*/
|
||||
watch($$(backed), () => {
|
||||
if (!backed) {
|
||||
executeQueue();
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* onScrollTop/onScrollBottomでbackedを厳密に検出する
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue