mirror of
https://github.com/vladmandic/automatic
synced 2026-09-13 10:08:43 +02:00
control mask: add auto-mask and auto-segment and support for algo masking and rembg masking
This commit is contained in:
@@ -343,10 +343,10 @@ function setupExtraNetworksForTab(tabname) {
|
||||
let searchTimer = null;
|
||||
txtSearchValue.addEventListener('input', (evt) => {
|
||||
if (searchTimer) clearTimeout(searchTimer);
|
||||
searchTimer = setTimeout(() => {
|
||||
filterExtraNetworksForTab(txtSearchValue.value.toLowerCase());
|
||||
searchTimer = setTimeout(async () => {
|
||||
await filterExtraNetworksForTab(txtSearchValue.value.toLowerCase());
|
||||
searchTimer = null;
|
||||
}, 150);
|
||||
}, 50);
|
||||
});
|
||||
|
||||
// card hover
|
||||
|
||||
Reference in New Issue
Block a user