unset timer on page exit

This commit is contained in:
2019-06-19 20:51:44 +02:00
parent 760d070461
commit c73c5ac6d2

View File

@@ -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');