From a744b1ee4228cc48d0022fd51a2d888e31afb263 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Thu, 3 Mar 2016 13:52:51 -0800 Subject: [PATCH] throttled updates -> 1000ms --- main/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/index.js b/main/index.js index b97dfa6f..a827e280 100644 --- a/main/index.js +++ b/main/index.js @@ -42,7 +42,7 @@ function init () { rootElement = createElement(currentVDom) document.body.appendChild(rootElement) - updateThrottled = throttle(update, 250) + updateThrottled = throttle(update, 1000) getClient(function (err, client) { if (err) return onError(err)