From 3b2a4e245893e99ffe3f96f16135d43fa2c31a21 Mon Sep 17 00:00:00 2001 From: Findeton Date: Fri, 6 Sep 2024 10:02:48 -0500 Subject: [PATCH] wip --- avUi/common-header-directive/common-header-directive.js | 2 +- dist/appCommon-v10.5.0.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/avUi/common-header-directive/common-header-directive.js b/avUi/common-header-directive/common-header-directive.js index 9fe2a0f4..b0f37f67 100644 --- a/avUi/common-header-directive/common-header-directive.js +++ b/avUi/common-header-directive/common-header-directive.js @@ -72,7 +72,7 @@ angular } if (scope.$parent.getSessionStartTime) { - scope.countdownStartTimeMs = scope.$parent.getSessionStartTime(false); + scope.countdownStartTimeMs = scope.$parent.getSessionStartTime(true); } scope.showCountdown = true; diff --git a/dist/appCommon-v10.5.0.js b/dist/appCommon-v10.5.0.js index acdb5aac..cbe36355 100644 --- a/dist/appCommon-v10.5.0.js +++ b/dist/appCommon-v10.5.0.js @@ -1207,7 +1207,7 @@ angular.module("avRegistration").config(function() {}), angular.module("avRegist } function updateTimedown() { scope.$parent.getSessionEndTime && (scope.logoutTimeMs = scope.$parent.getSessionEndTime()), - scope.$parent.getSessionStartTime && (scope.countdownStartTimeMs = scope.$parent.getSessionStartTime(!1)), + scope.$parent.getSessionStartTime && (scope.countdownStartTimeMs = scope.$parent.getSessionStartTime(!0)), scope.showCountdown = !0; var now = Date.now(); scope.countdownSecs = Math.round((scope.logoutTimeMs - now) / 1e3), scope.countdownMins = Math.round((scope.logoutTimeMs - now) / 6e4),