From 1603c2bd501f65f1748bd2e528d8f97506b03b03 Mon Sep 17 00:00:00 2001 From: Stepan Krapivin Date: Tue, 7 Nov 2017 13:22:08 +0500 Subject: [PATCH] add doUpdate to Updater.resume in dtys.js --- static/js/dtys.js | 1 + 1 file changed, 1 insertion(+) diff --git a/static/js/dtys.js b/static/js/dtys.js index fecc234..c21a3df 100644 --- a/static/js/dtys.js +++ b/static/js/dtys.js @@ -132,6 +132,7 @@ var Updater = function(){ this.resume = function(){ if(this.interval != null) return; this.start(); + this.doUpdate(); }; };