diff --git a/emhttp/plugins/dynamix/include/DefaultPageLayout.php b/emhttp/plugins/dynamix/include/DefaultPageLayout.php index 8ac313e54..d9ea72aa4 100644 --- a/emhttp/plugins/dynamix/include/DefaultPageLayout.php +++ b/emhttp/plugins/dynamix/include/DefaultPageLayout.php @@ -173,7 +173,7 @@ function nchanResume() { } // event handlers -$(window).click(function() {nchanResume();}); +$(window).click(function(e) {nchanResume();}); document.addEventListener('visibilitychange',function(e) { if (document.hidden) nchanPause(); else nchanResume(); });