Subversion Repositories Applications.bazar

Compare Revisions

Ignore whitespace Rev 483 → Rev 484

/branches/v3.1-blanche-neige/bazar.interne.css
359,3 → 359,21
#date_validite {
width: 100px;
}
 
#origine-donnees {
-moz-user-select: none;
background: -moz-linear-gradient(center center , rgba(255, 255, 255, 0) 0pt, rgba(255, 255, 255, 0.5) 50px) repeat scroll 0 0 transparent;
bottom: 0;
color: #444444;
direction: ltr;
font-family: Arial,sans-serif;
font-size: 8.5px;
font-weight: bold;
height: 38px;
line-height: 19px;
padding-right: 2px;
position: absolute;
text-align: left;
white-space: nowrap;
z-index: 3001;
}
/branches/v3.1-blanche-neige/bibliotheque/elements/carte_google.php
101,7 → 101,19
position: point,
map: map
});
 
var mention = \'<div id="origine-donnees">Tuiles : <a href="http://www.openstreetmap.fr" target="_blank">OsmFr</a><br/>\';
mention += \'Carte : <a href="http://www.openstreetmap.org/copyright" target="_blank">© les contributeurs d\\\'OpenStreetMap</a></div>\';
$("#map").append(mention);
 
// ecouteur sur changement de fond
google.maps.event.addListener( map, \'maptypeid_changed\', function() {
if (map.getMapTypeId() == "OSM") {
$("#origine-donnees").show();
} else {
$("#origine-donnees").hide();
}
});
};' ;
GEN_stockerCodeScript($script);
//GEN_stockerFichierScript('googleMapScript', $this->options['nom_bdd']);