mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-01 21:30:30 +01:00
feat: increase search timeouts
This commit is contained in:
@@ -79,7 +79,7 @@ define('admin/manage/tags', [
|
||||
selectable.enable('.tag-management', '.tag-row');
|
||||
});
|
||||
});
|
||||
}, 100);
|
||||
}, 250);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ define('forum/tags', ['forum/infinitescroll'], function (infinitescroll) {
|
||||
timeoutId = 0;
|
||||
});
|
||||
});
|
||||
}, 100);
|
||||
}, 250);
|
||||
});
|
||||
|
||||
infinitescroll.init(Tags.loadMoreTags);
|
||||
|
||||
@@ -39,7 +39,7 @@ define('forum/users', ['translator', 'benchpress'], function (translator, Benchp
|
||||
searchTimeoutID = 0;
|
||||
}
|
||||
|
||||
searchTimeoutID = setTimeout(doSearch, 150);
|
||||
searchTimeoutID = setTimeout(doSearch, 250);
|
||||
});
|
||||
|
||||
$('.search select, .search input[type="checkbox"]').on('change', function () {
|
||||
|
||||
Reference in New Issue
Block a user