Skip to content
Snippets Groups Projects
Commit aed34e42 authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

Clean up modal-closing logic

parent 09fd3a4d
No related branches found
No related tags found
1 merge request!1Implemented Embed-code generator interface
......@@ -51,6 +51,8 @@ BusMap.Map = function(opts) {
that.leaflet.on('moveend', setUrlFromView);
}
// Hide any opened modals when map is clicked.
$(that.map).on('click', hideModal);
// Show/hide markers based on zoom.
that.leaflet.on('zoomend', zoomShowHide);
......@@ -388,14 +390,7 @@ BusMap.Map = function(opts) {
$('div.modal').remove();
var modal = $('<div class="modal" id="modal-'+name+'"></div>');
var closeBtn = $('<div class="close">&times;</div>').appendTo(modal);
closeBtn.click(function() {
$(this).parent().remove();
setUrlFromView();
});
$(that.map).click(function() {
modal.remove();
setUrlFromView;
});
closeBtn.on('click', hideModal);
$(that.opts.mapElement).after(modal);
modal.show();
var params = {
......@@ -417,6 +412,13 @@ BusMap.Map = function(opts) {
}
}
// Hide modal popup if open
function hideModal() {
if ($('div.modal').length == 0) return;
$('div.modal').remove();
setUrlFromView();
}
// Scaling: update what is displayed based on zoom level
function zoomShowHide() {
var zoom = that.leaflet.getZoom();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment