Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 323 → Rev 324

/trunk/presentations/scripts/fiche-synthese.js
351,7 → 351,6
 
//Initialisation
$(document).ready(function() {
 
lierModulesEtOnglets();
/* mouvement des blocs */
398,5 → 397,17
ajouterTitreSurvolOnglets();
redimensionnerOnglets();
selectionnerOngletParDefautOuEnregistre();
});
 
 
$(document).ajaxStop(function() {
if (document.implementation.hasFeature('http://www.w3.org/TR/SVG11/feature#BasicStructure', '1.1') == false) {
$('.svg').each(function() {
alt = $(this).attr('alt');
img = document.createElement('img');
img.src = alt;
$(this).replaceWith(img);
});
}
});