Skip to content

Instantly share code, notes, and snippets.

@halityurttas
Created April 10, 2016 23:47
Show Gist options
  • Save halityurttas/19ec4301f66757182609806733a27e0f to your computer and use it in GitHub Desktop.
Save halityurttas/19ec4301f66757182609806733a27e0f to your computer and use it in GitHub Desktop.
//iframe ile eklenen map ın style özelliğine pointer-events:none eklemeyi unutmayın
$(function() {
$('.map-container').click(function(e) {
$(this).find('iframe').css('pointer-events', 'all');
}).mouseleave(function(e) {
$(this).find('iframe').css('pointer-events', 'none');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment