Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 1583 → Rev 1584

/trunk/presentations/scripts/fiche-synthese.js
27,9 → 27,8
this.titre;
this.htmlResume;
this.statique = statique;
}
 
 
function getUrlVars() {
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
554,11 → 553,10
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() {
alt = $(this).attr('alt');
img = document.createElement('img');
img.src = alt;
var img = document.createElement('img');
img.src = $(this).attr('alt');
$(this).replaceWith(img);
});
}