Skip to content

Instantly share code, notes, and snippets.

@Sigmus
Created April 3, 2013 16:48
Show Gist options
  • Save Sigmus/5302991 to your computer and use it in GitHub Desktop.
Save Sigmus/5302991 to your computer and use it in GitHub Desktop.
/* Ajuste de altura googlemaps */
var $contato = $('.contato');
var $onde = $contato.find('.onde');
var $entre = $contato.find('.entre');
function ajustarAlturaMapa() {
$onde.height($entre.height());
}
ajustarAlturaMapa();
$(window).resize(ajustarAlturaMapa);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment