Subversion Repositories Applications.reseau

Rev

Rev 68 | Rev 78 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 68 Rev 72
Line 159... Line 159...
159
	var nomComplet = '';
159
	var nomComplet = '';
160
	if (jeton != undefined) {
160
	if (jeton != undefined) {
161
		// décodage jeton
161
		// décodage jeton
162
		var jetonDecode = decoderJeton(jeton);
162
		var jetonDecode = decoderJeton(jeton);
163
		nomComplet = jetonDecode.intitule;
163
		nomComplet = jetonDecode.intitule;
-
 
164
		email = jetonDecode.sub;
164
	}
165
	}
165
	// affichage
166
	// affichage
166
	$('#nom-complet').html(nomComplet);
167
	$('#nom-complet').html(nomComplet);
-
 
168
	$('#nom-complet').attr('title', email);
167
}
169
}
Line 168... Line 170...
168
 
170
 
169
/**
171
/**
170
 * Décodage à l'arrache d'un jeton JWT, ATTENTION CONSIDERE QUE LE
172
 * Décodage à l'arrache d'un jeton JWT, ATTENTION CONSIDERE QUE LE