Skip to content

Commit

Permalink
feat: increase search timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
barisusakli committed Sep 14, 2019
1 parent 75d7ae9 commit 1789ecb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion public/src/admin/manage/tags.js
Expand Up @@ -79,7 +79,7 @@ define('admin/manage/tags', [
selectable.enable('.tag-management', '.tag-row');
});
});
}, 100);
}, 250);
});
}

Expand Down
2 changes: 1 addition & 1 deletion public/src/client/tags.js
Expand Up @@ -27,7 +27,7 @@ define('forum/tags', ['forum/infinitescroll'], function (infinitescroll) {
timeoutId = 0;
});
});
}, 100);
}, 250);
});

infinitescroll.init(Tags.loadMoreTags);
Expand Down
2 changes: 1 addition & 1 deletion public/src/client/users.js
Expand Up @@ -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 () {
Expand Down

0 comments on commit 1789ecb

Please sign in to comment.