You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
281 B
JavaScript
11 lines
281 B
JavaScript
6 years ago
|
$(function(e) {
|
||
|
createImageLoader();
|
||
|
$('span.closeMap').click(function(){
|
||
|
$(this).parent('.tourMap').fadeOut();
|
||
|
});
|
||
|
$('.viewMap a.show').click(function(){
|
||
|
var tar = $(this).parent('.viewMap').children('.tourMap');
|
||
|
tar.is(":visible") ? null : tar.fadeIn();
|
||
|
});
|
||
|
});
|