Only update human time objects every ten seconds

This commit is contained in:
Franz Liedke
2016-03-30 19:47:40 +09:00
parent 179fcfb3ca
commit 9ae189bb9f
3 changed files with 3 additions and 3 deletions

View File

@ -14,5 +14,5 @@ function updateHumanTimes() {
* timestamps rendered with the `humanTime` helper.
*/
export default function humanTime() {
setInterval(updateHumanTimes, 1000);
setInterval(updateHumanTimes, 10000);
}