Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 577 Rev 587
Line 4... Line 4...
4
		$('.nom').each(function () {
4
		$('.nom').each(function () {
5
			if ($(this).children('.plus').length == 0) {
5
			if ($(this).children('.plus').length == 0) {
6
				html = $(this).html();
6
				html = $(this).html();
7
				posCrochetGauche = html.indexOf('[');
7
				posCrochetGauche = html.indexOf('[');
8
				if (posCrochetGauche > 0) {
8
				if (posCrochetGauche > 0) {
9
					$(this).css('cursor', 'pointer');
-
 
10
					nom = html.substr(0, posCrochetGauche);
9
					nom = html.substr(0, posCrochetGauche);
11
					biblio = html.substr(posCrochetGauche, html.length);
10
					biblio = html.substr(posCrochetGauche, html.length);
12
					$(this).html(nom);
11
					$(this).html(nom);
Line 13... Line 12...
13
					
12