1
0
mirror of https://github.com/flarum/core.git synced 2025-08-01 22:20:21 +02:00

Reduce post preview hover delay

This commit is contained in:
Toby Zerner
2015-08-13 12:50:34 +09:30
parent d065495959
commit 26ad468778

View File

@@ -93,7 +93,7 @@ export default function addPostMentionPreviews() {
$this.parent().hover(
() => {
clearTimeout(timeout);
timeout = setTimeout(showPreview, 500);
timeout = setTimeout(showPreview, 250);
},
() => {
clearTimeout(timeout);