teamnet: update successfull authentication detection (#45994)

This commit is contained in:
Serghei Mihai 2020-08-24 10:48:02 +02:00
parent 48a8c50728
commit 83af9278d6
1 changed files with 1 additions and 1 deletions

View File

@ -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;
};