mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-05-06 15:17:26 +02:00
dont do IS if there is a search term
This commit is contained in:
@@ -35,7 +35,7 @@ define('forum/tags', ['forum/infinitescroll'], function (infinitescroll) {
|
||||
};
|
||||
|
||||
Tags.loadMoreTags = function (direction) {
|
||||
if(direction < 0 || !$('.tag-list').length) {
|
||||
if (direction < 0 || !$('.tag-list').length || $('#tag-search').val()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user