Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 547 Rev 586
Line 483... Line 483...
483
function gestionBiblio(parent) {
483
function gestionBiblio(parent) {
484
	parent.children('.nom').each(function () {
484
	parent.children('.nom').each(function () {
485
		html = $(this).html();
485
		html = $(this).html();
486
		posCrochetGauche = html.indexOf('[');
486
		posCrochetGauche = html.indexOf('[');
487
		if (posCrochetGauche > 0) {
487
		if (posCrochetGauche > 0) {
488
			$(this).css('cursor', 'pointer');
-
 
489
			nom = html.substr(0, posCrochetGauche);
488
			nom = html.substr(0, posCrochetGauche);
490
			biblio = html.substr(posCrochetGauche, html.length);
489
			biblio = html.substr(posCrochetGauche, html.length);
491
			$(this).html(nom);
490
			$(this).html(nom);
Line 492... Line 491...
492
			
491