From bac6817abd3ed9c7e69caa52cbf5275cb29b33d6 Mon Sep 17 00:00:00 2001 From: franzz Date: Wed, 19 Jun 2019 20:51:44 +0200 Subject: [PATCH] unset timer on page exit --- masks/project.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/masks/project.html b/masks/project.html index 10b02fd..4e06f66 100755 --- a/masks/project.html +++ b/masks/project.html @@ -51,6 +51,11 @@ self.onResize = function() { } }; +self.onQuit = function() { + setFeedUpdateTimer(false); + return true; +} + function toggleFeedPanel(bShow) { var $Container = $('#projects'); if(typeof bShow === 'undefined') $Container.toggleClass('with-feed');