Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 327 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 327 Rev 329
Line 596... Line 596...
596
 
596
 
597
function construireUrlProfilParticipant(id) {
597
function construireUrlProfilParticipant(id) {
598
	return '<a class="lien_vers_profil" href="http://obs-saisons.fr/user/'+id+'"> Voir l\'auteur </a>';
598
	return '<a class="lien_vers_profil" href="http://obs-saisons.fr/user/'+id+'"> Voir l\'auteur </a>';
Line -... Line 599...
-
 
599
}
-
 
600
 
-
 
601
function getCouleurAleatoire() {
-
 
602
  var letters = '0123456789ABCDEF';
-
 
603
  var color = '#';
-
 
604
  for (var i = 0; i < 6; i++) {
-
 
605
    color += letters[Math.floor(Math.random() * 16)];
-
 
606
  }
Line 599... Line 607...
599
}
607
  return color;
600
 
608
}
601
 
609