# HG changeset patch # User Michiel Broek # Date 1408536075 -7200 # Node ID 8c52b09bdeccf6eef03cbb36f339b2120a981b13 # Parent fb930d1db5a64ed0f476ef93b3d4f9ebad26f163 Slowdown room temperature/humidity updates to 60 seconds diff -r fb930d1db5a6 -r 8c52b09bdecc www-thermferm/js/index.js --- a/www-thermferm/js/index.js Wed Aug 20 13:51:44 2014 +0200 +++ b/www-thermferm/js/index.js Wed Aug 20 14:01:15 2014 +0200 @@ -27,7 +27,7 @@ $("#room_temp").html(data.temperature); $("#room_hum").html(data.humidity); }); - }, 10000); + }, 60000); // Create jqxTabs. $("#jqxTabs").jqxTabs({ width: 978, height: 428, position: 'top', theme: 'ui-redmond'}); $("#maintenance").jqxButton({ width: 150, height: 25, theme: 'ui-redmond' });