Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 887 Rev 892
Line 342... Line 342...
342
		
342
		
343
		tableauOnglets[identifiantOnglet] = module;
343
		tableauOnglets[identifiantOnglet] = module;
344
	});
344
	});
345
	$(".lien-onglet").each(function() {
345
	$(".lien-onglet").each(function() {
346
		var urlOnglet = $(this).attr('href');
346
		var urlOnglet = $(this).attr('href');
-
 
347
		var urlVars = urlOnglet.slice(urlOnglet.indexOf('?') + 1);
347
		urlOnglet = urlOnglet.replace(/index\.php/, "service.php");
348
		urlBase = base_url_application_onglets+"?"+urlVars;
348
		urlOnglet = urlOnglet.replace('action=fiche','action=onglet');
349
		urlOnglet = urlBase.replace('action=fiche','action=onglet');
349
		$(this).attr('href', urlOnglet);
350
		$(this).attr('href', urlOnglet);
350
	});
351
	});
Line 351... Line 352...
351
}
352
}