From 93b865efd19705d850b6e59900bb541449816f37 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 --- framework/core/js/forum/src/components/post-stream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/js/forum/src/components/post-stream.js b/framework/core/js/forum/src/components/post-stream.js index 90953123e..f0d369281 100644 --- a/framework/core/js/forum/src/components/post-stream.js +++ b/framework/core/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); } /**