This commit is contained in:
2019-06-03 15:22:10 +02:00
parent ae4a72b08b
commit bbdde0d00d
13 changed files with 64 additions and 39 deletions

View File

@@ -17,8 +17,7 @@ function map() {
id: 'mapbox.streets'
}).addTo(mymap);
L.marker([44.7365818, 4.9776488], {icon: greenIcon}).addTo(mymap)
.bindPopup("<b>Hello world!</b><br />I am le campus.").openPopup();
L.marker([44.7365818, 4.9776488], {icon: greenIcon}).addTo(mymap);
function onMapClick(e) {
popup
@@ -78,6 +77,7 @@ function slide() {
$('.gal-salles').bxSlider({
responsive: true,
pager:true,
preloadImages:'visible',
});
}
@@ -96,11 +96,11 @@ function links() {
}
function clickbutton() {
var $button = $('#ajax-test-form .radio');
var $button = $('#ajax-test-form .radio label');
$button.on('click', function(){
$(this).parent('.form-data').find('.check').removeClass('check');
$(this).addClass('check');
$(this).parents('.form-data').find('.check').removeClass('check');
$(this).parent('.radio').addClass('check');
});
}