From 83af9278d6a26e197d97b5cf90139a84c05b00db Mon Sep 17 00:00:00 2001 From: Serghei Mihai Date: Mon, 24 Aug 2020 10:48:02 +0200 Subject: [PATCH] teamnet: update successfull authentication detection (#45994) --- mandayejs/static/teamnet/js/auth.checker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mandayejs/static/teamnet/js/auth.checker.js b/mandayejs/static/teamnet/js/auth.checker.js index 9324d96..e0928f2 100644 --- a/mandayejs/static/teamnet/js/auth.checker.js +++ b/mandayejs/static/teamnet/js/auth.checker.js @@ -1,6 +1,6 @@ $(function(){ window.auth_success = function(){ - if ($(".infoUtilisateur[alt='Deconnexion']").length > 0) + if ($("span[alt='Deconnexion']").length > 0) return true; return false; };