Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 1584 → Rev 1583

/trunk/presentations/scripts/fiche-synthese.js
27,8 → 27,9
this.titre;
this.htmlResume;
this.statique = statique;
}
 
 
function getUrlVars() {
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
553,10 → 554,11
gererChargementGraphiqueEcologie();
gererAffichageLegendeEcologie();
gererTemplatesChargementALaDemande();
if (document.implementation.hasFeature('http://www.w3.org/TR/SVG11/feature#BasicStructure', '1.1') === false) {
if (document.implementation.hasFeature('http://www.w3.org/TR/SVG11/feature#BasicStructure', '1.1') == false) {
$('.svg').each(function() {
var img = document.createElement('img');
img.src = $(this).attr('alt');
alt = $(this).attr('alt');
img = document.createElement('img');
img.src = alt;
$(this).replaceWith(img);
});
}