Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 321 Rev 324
Line 349... Line 349...
349
 
349
 
Line 350... Line 350...
350
var fancyboxinitialise = false;
350
var fancyboxinitialise = false;
351
 
351
 
352
//Initialisation
-
 
353
$(document).ready(function() {
352
//Initialisation
Line 354... Line 353...
354
 
353
$(document).ready(function() {
355
	lierModulesEtOnglets();
354
	lierModulesEtOnglets();
356
	
355
	
Line 396... Line 395...
396
	creerMenuOngletsFermes();
395
	creerMenuOngletsFermes();
397
	afficherOngletsPourNiveau();
396
	afficherOngletsPourNiveau();
398
	ajouterTitreSurvolOnglets();
397
	ajouterTitreSurvolOnglets();
399
	redimensionnerOnglets();
398
	redimensionnerOnglets();
400
	selectionnerOngletParDefautOuEnregistre();
399
	selectionnerOngletParDefautOuEnregistre();
-
 
400
});
401
	
401
 
-
 
402
 
-
 
403
$(document).ajaxStop(function() {
-
 
404
	if (document.implementation.hasFeature('http://www.w3.org/TR/SVG11/feature#BasicStructure', '1.1') == false) {
-
 
405
	    $('.svg').each(function() {
-
 
406
	   	 
-
 
407
	   	 alt = $(this).attr('alt');
-
 
408
	   	 img = document.createElement('img');
-
 
409
	   	 img.src = alt;
-
 
410
	   	 $(this).replaceWith(img);
-
 
411
	    });
-
 
412
	}
402
});
413
});
403
414