Skip to content

Instantly share code, notes, and snippets.

@objectivehtml
Created October 21, 2011 12:30
Show Gist options
  • Save objectivehtml/1303706 to your computer and use it in GitHub Desktop.
Save objectivehtml/1303706 to your computer and use it in GitHub Desktop.
$('.tabs').tabs();
$('.tabs a').click(function() {
var $t = $(this);
var href = $t.attr('href');
if(href == '#map') {
google.maps.event.addListener(map_canvas, 'resize', function() {
map_canvas.setCenter(map_bounds.getCenter());
});
google.maps.event.trigger(map_canvas, 'resize');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment