From 45ba69315402db166f2bcc292623c9ba6162b531 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Tue, 23 Jun 2015 10:29:08 +0930 Subject: [PATCH] Speed up committing of scroll position in URL/marking as read --- js/forum/src/components/post-stream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/forum/src/components/post-stream.js b/js/forum/src/components/post-stream.js index 90953123e..f0d369281 100644 --- a/js/forum/src/components/post-stream.js +++ b/js/forum/src/components/post-stream.js @@ -248,7 +248,7 @@ class PostStream extends mixin(Component, evented) { } clearTimeout(this.calculatePositionTimeout); - this.calculatePositionTimeout = setTimeout(this.calculatePosition.bind(this), 500); + this.calculatePositionTimeout = setTimeout(this.calculatePosition.bind(this), 100); } /**