From 69ec37331af31384ac7dc3046a1424e31a5c08ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Jastrz=C4=99bski?= Date: Sun, 25 Apr 2021 17:32:23 +0200 Subject: [PATCH] Fix xhr callbacks --- shynet/analytics/templates/analytics/scripts/page.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/shynet/analytics/templates/analytics/scripts/page.js b/shynet/analytics/templates/analytics/scripts/page.js index 2c960f5..f2c96c1 100644 --- a/shynet/analytics/templates/analytics/scripts/page.js +++ b/shynet/analytics/templates/analytics/scripts/page.js @@ -27,12 +27,12 @@ var Shynet = { true ); xhr.setRequestHeader("Content-Type", "application/json"); - xhr.onload(function () { + xhr.onload = function () { Shynet.skipHeartbeat = false; - }); - xhr.onerror(function () { + }; + xhr.onerror = function () { Shynet.skipHeartbeat = false; - }); + }; xhr.send( JSON.stringify({ idempotency: Shynet.idempotency, @@ -43,7 +43,7 @@ var Shynet = { window.performance.timing.navigationStart, }) ); - } catch (e) { } + } catch (e) {} }, newPageLoad: function () { if (Shynet.heartbeatTaskId != null) {